{
    "General": {
        "AdditionalButtons": [ // NEW V1.2 // Adding Additional Buttons
            {
                "Name": "Rules",
                "CommandToExecute": "",
                "ChatCommandToExecute": "",
                "UrlToOpen": "www.google.de"
            },
            {
                "Name": "Disable Fog",
                "CommandToExecute": "r.fog 0",
                "ChatCommandToExecute": "",
                "UrlToOpen": ""
            }
        ]
    },
    "RewardPackets": [ // reward packs are packs, they player will get a default amount (good for starter kits)
        {
            "Name": "reward_999starterkit", // name of the reward pack (intern used) -> had to be unique
            "FromShopPacket": "999starterkit", // pack where the reward pack is for
            "InitAmountIfInViableGroups": 3, // amount the player will get added for this reward pack
            "GrantAmountIfReceivedGroup": [ // NEW V1.2 // Define group and amount - the player will get the amount if granting the group
                {
                    "Group": "vip5",
                    "Amount": 4
                },
                {
                    "Group": "vip10",
                    "Amount": 5
                }
            ]
        }
    ],
    "ShopPackets": [
        {
            "ExtraDescription": "Get lucky or not!\nCoinflip for a Carcha Level 224 or DungBeetle Level 5", // NEW V1.2 // Extra Description will be shown if no item or dino is found
            "NotOnTheseMaps": [ // NEW V1.2 // list of Maps where the Packet is not available
                "TheIsland_WP"
            ],
            "Items": [
                {
                    "Variants": [
                        {
                            "FixedArmor": "100;200", // NEW V1.2 // optional Min Max Syntax instead of fixed number
                            "FixedDamage": "100;200", // NEW V1.2 // optional Min Max Syntax instead of fixed number
                            "FixedDura": "100;200", // NEW V1.2 // optional Min Max Syntax instead of fixed number
                            "FixedHypo": "100;200", // NEW V1.2 // optional Min Max Syntax instead of fixed number
                            "FixedHyper": "100;200" // NEW V1.2 // optional Min Max Syntax instead of fixed number
                        }
                    ]
                }
            ],
            "Dinos": [
                {
                    "Variants": [
                        {
                            "Level": "150;224",
                            "RandomWeight": 30 // NEW V1.2 // Min Max Syntax -> optional available on: Imprint,Saddle Quality,FixedSaddleArmor,Level
                        } // NEW V1.2 // Random Weight for this Variant. If Set Pack is marked as Random Pack
                    ]
                }
            ],
            "Commands": [
                {
                    "Name": "rnd_repair",
                    "Command": "giveitem Blueprint'/Game/ClubARk/Rewards/RepairKit/Armor/PrimalItem_RepairKit_BootsOnly.PrimalItem_RepairKit_BootsOnly' [2;5] [5;20] 0",
                    "IconOverride": "/Script/Engine.Texture2D'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/Icons/MetalBoots_Icon.MetalBoots_Icon'", // NEW V1.2 // min max values can be used as placeholder in any Commands!
                    "Title": "Repair Kit Boots"
                }
            ]
        }
    ],
    "ItemsToSell": [
        {
            "Name": "sell_flakbp",
            "Description": "Sell 1 Flak Chest BP",
            "ItemToSell": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/PrimalItemArmor_MetalShirt.PrimalItemArmor_MetalShirt'",
            "Amount": 1,
            "MinRating": 4,
            "MaxRating": 6, // NEW V1.2 //min Item Rating
            "RequiresBlueprint": true, // NEW V1.2 //max Item Rating
            "AllowCrafted": false, // NEW V1.2 ///if true, only blueprints can be sold
            "AcceptChilds": false, // NEW V1.2 //if true, crafted items can also be solf
            "Price": 100 // NEW V1.2 //if true, all Childs of this item will also be valid for sell
        }
    ]
}