diff --git a/Tools/new_parser.py b/Tools/new_parser.py index 7c69772..fe9238e 100644 --- a/Tools/new_parser.py +++ b/Tools/new_parser.py @@ -1,71 +1,220 @@ import os import json -# Define your base template here base_template = { "Result": [] } - -# Function to normalize JSON data based on your template def normalize_data(json_data, prev_guid, next_guid): - normalized_data = { - "Id": json_data.get("GUID"), - "DisplayName": json_data.get("DisplayName"), - "Purchasable": True, - "Consumable": False, - "IsWeapon": json_data.get("IsWeapon"), - "InitialQuantity": json_data.get("InitialQuantity"), - "DefaultCost": json_data.get("DefaultCost"), - "MetaData": { - "GameplayTags": json_data.get("MetaData", {}).get("GameplayTags"), - "MinPlayerLevel": json_data.get("MetaData", {}).get("MinPlayerLevel"), - "MinCharacterLevel": json_data.get("MetaData", {}).get("MinCharacterLevel"), - "Origin": json_data.get("MetaData", {}).get("Origin"), - "PrerequisiteItem": prev_guid, - "FollowingItem": next_guid, - }, - "Faction": json_data.get("Faction"), - "GameplayTagContainer": json_data.get("GameplayTagContainer") - } - return normalized_data + normalized_data_list = [] + for item_data in json_data: + normalized_data = { + "Id": item_data.get("Properties", {}).get("Guid"), + "DisplayName": item_data.get("Properties", {}).get("DisplayName", {}).get("Key"), + "Purchasable": True, + "Consumable": False, + "IsWeapon": item_data.get("IsWeapon"), + "InitialQuantity": 1, + "DefaultCost": item_data.get("Properties", {}).get("DefaultCost"), + "MetaData": { + "GameplayTags": item_data.get("Properties", {}).get("TagContainer"), + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": prev_guid, + "FollowingItem": next_guid, + }, + "Faction": "", + "GameplayTagContainer": {} + } + if item_data.get("Properties", {}).get("TagContainer"): + try: + normalized_data["GameplayTagContainer"] = {"GameplayTags": [{"TagName": item_data.get("Properties", {}).get("TagContainer")[0]}],"ParentTags": [{"TagName": item_data.get("Properties", {}).get("TagContainer")[1]}]} + except IndexError: + normalized_data["GameplayTagContainer"] = {"ParentTags": [{"TagName": item_data.get("Properties", {}).get("TagContainer")[0]}]} + # normalized_data.pop("GameplayTagContainer") + tag_query = item_data.get("Properties", {}).get("TagQuery", {}) + char_tag = item_data.get("Properties", {}).get("GameplayTags", {}) + + if not item_data.get("IsWeapon"): + normalized_data.pop("IsWeapon") + + if normalized_data["MetaData"]["FollowingItem"] == "": + normalized_data["MetaData"].pop("FollowingItem") + if normalized_data["MetaData"]["PrerequisiteItem"] == "": + normalized_data["MetaData"].pop("PrerequisiteItem") + if not normalized_data["DefaultCost"]: + normalized_data.pop("DefaultCost") + + faction = has_class_runner(tag_query) + + if faction: + normalized_data["Faction"] = faction + else: + char_tag = has_class_runner(char_tag) + if char_tag: + normalized_data["Faction"] = char_tag + else: + normalized_data.pop("Faction") + + if not normalized_data["Id"]: + normalized_data = None + if normalized_data: + normalized_data_list.append(normalized_data) + return normalized_data_list + + +def has_class_runner(tag_query): + if "TagQuery" in tag_query: + tag_dictionary = tag_query["TagQuery"].get("TagDictionary", []) + for tag in tag_dictionary: + if "TagName" in tag and tag["TagName"] == "Class.Runner": + return "Runner" + elif "TagQuery" in tag and tag["TagName"] == "Class.Hunter": + if has_class_runner(tag["TagQuery"]): + return "Hunter" + else: + return None + else: + for item in tag_query: + if item == "Class.Runner": + return "Runner" + elif item == "Class.Hunter": + return "Hunter" + return False + + +def get_guid(json_data): + try: + return json_data.get("Properties", {}).get("Guid") + except AttributeError: + for item in json_data: + if item.get("Properties", {}).get("Guid"): + return item.get("Properties", {}).get("Guid") + else: + return "" + #data = json_data[2] + # return data.get("Properties", {}).get("Guid") + -# Function to process and normalize JSON files in a given directory def process_folder(folder_path): + print("Processing folder: " + folder_path) catalog_data = [] for root, _, files in os.walk(folder_path): for file_name in files: if file_name.endswith('.json'): + print("Processing file: " + file_name) file_path = os.path.join(root, file_name) with open(file_path, 'r') as json_file: json_data = json.load(json_file) - # Check if it's an item with levels - if "_002.json" in file_name: - prev_guid = file_name.replace("_002.json", "_001.json") - next_guid = file_name.replace("_002.json", "_003.json") + print(f"Current PATH: {file_path}") + if file_path.startswith("./Items\Runners\Character\Items_Released\Perks") or file_path.startswith("./Items\Hunters\Character\Items_Released\Perks") or file_path.startswith("./Items\Hunters\Character\Items_Released\Powers"): + if "_002.json" in file_name: + try: + with open(file_path.replace("_002.json", "_Item.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + except FileNotFoundError: + with open(file_path.replace("_002.json", "_001.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_002.json", "_003.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_001.json" in file_name: + try: + with open(file_path.replace("_001.json", "_002.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + except FileNotFoundError: + next_guid = "" + elif "_Item.json" in file_name: + try: + with open(file_path.replace("_Item.json", "_002.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + except FileNotFoundError: + next_guid = "" + elif "_003.json" in file_name: + with open(file_path.replace("_003.json", "_002.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_003.json", "_004.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_004.json" in file_name: + with open(file_path.replace("_004.json", "_003.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_004.json", "_005.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_005.json" in file_name: + with open(file_path.replace("_005.json", "_004.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_005.json", "_006.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_006.json" in file_name: + with open(file_path.replace("_006.json", "_005.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_006.json", "_007.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_007.json" in file_name: + with open(file_path.replace("_007.json", "_006.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_007.json", "_008.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_008.json" in file_name: + with open(file_path.replace("_008.json", "_007.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_008.json", "_009.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_009.json" in file_name: + with open(file_path.replace("_009.json", "_008.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + with open(file_path.replace("_009.json", "_010.json"), 'r') as json_file: + next_json_data = json.load(json_file) + next_guid = get_guid(next_json_data) + elif "_010.json" in file_name: + with open(file_path.replace("_010.json", "_009.json"), 'r') as json_file: + prev_json_data = json.load(json_file) + prev_guid = get_guid(prev_json_data) + next_guid = "" + else: + prev_guid = "" + next_guid = "" else: prev_guid = "" next_guid = "" normalized_data = normalize_data(json_data, prev_guid, next_guid) - catalog_data.append(normalized_data) + if normalized_data: + catalog_data.append(normalized_data) + else: + print(f"Skipping file: {file_name}") return catalog_data -# Traverse the main directory for Runner and Hunter folders main_folder = './Items' -runner_folder = os.path.join(main_folder, 'Runner') -hunter_folder = os.path.join(main_folder, 'Hunter') +runner_folder = os.path.join(main_folder, 'Runners') +hunter_folder = os.path.join(main_folder, 'Hunters') -# Process and normalize JSON files in Runner and Hunter folders runner_catalog_data = process_folder(runner_folder) hunter_catalog_data = process_folder(hunter_folder) -# Combine Runner and Hunter catalog data into one catalog catalog_data = runner_catalog_data + hunter_catalog_data -# Save the catalog data to catalog.json catalog_file_path = 'catalog.json' with open(catalog_file_path, 'w') as catalog_file: + base_template["Result"] = catalog_data json.dump(base_template, catalog_file, indent=4) print("Catalog JSON file created successfully.") diff --git a/src/json/catalog/te-18f25613-36778-ue4-374f864b/catalog.json b/src/json/catalog/te-18f25613-36778-ue4-374f864b/catalog.json index 4f4ebfc..44630b4 100644 --- a/src/json/catalog/te-18f25613-36778-ue4-374f864b/catalog.json +++ b/src/json/catalog/te-18f25613-36778-ue4-374f864b/catalog.json @@ -1,3062 +1,47936 @@ -{"Result": [ - { - "Id":"E4892E8A-495FFB38-F90729A1-C97F3AC9", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyA", - "Price":10 - } - ], - "EventCostList": [ +{ + "Result": [ + [ + { + "Id": "759E44DD-469C2841-75C2D6A1-AB0B0FA7", + "DisplayName": "Runner_Dash_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1600 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Runner", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "56B7B6F6-473712D0-B7A2F992-BB2C16CD", + "DisplayName": "Runner_Smoke_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Runner", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"D877B29A-4EF20A04-7BEBF69A-18B2A1AB", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":170 - } - ], - "EventCostList": [ + "Id": "234FFD46-4C55514B-6C1E7386-45993CAA", + "DisplayName": "Runner_Ghost_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 800 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Runner", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"5A8F3E35-4CBC6F8B-5BD015AB-89DE031A", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":230 - } - ], - "EventCostList": [ + "Id": "C300E3A8-4E571D54-9E014B90-51A18BE8", + "DisplayName": "Runner_Ink_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 800 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Runner", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"51CAE9D7-47988206-193B08BA-D648FF96", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":310 - } - ], - "EventCostList": [ + "Id": "755D4DFE-40DA1512-B01E3D8C-FF3C8D4D", + "DisplayName": "Runner_Sawbone_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 800 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Runner", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"287E08D3-41A4C1D7-9E16A086-E603A926", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":410 - } - ], - "EventCostList": [ + "Id": "38A4EF81-40822E49-8B2FD196-B757F7AD", + "DisplayName": "Runner_Subai_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 800 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Runner", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "8CFE58F9-4B5B35F9-2D54F684-58CF0A5D", + "DisplayName": "Scavenger_Dash_MaskCH19_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "BA470A97-4C8EEC39-D7248F91-F3ABFACD", + "DisplayName": "Scavenger_Dash_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ] - } - }, - { - "Id":"5B87A706-458F7D1E-CE107C96-F90C547F", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":550 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "7232468E-46C46F7B-888F999F-E43D3BA6", + "DisplayName": "Scavenger_Dash_Mask002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "10CAC0D2-4AD74D97-9AB4FC93-50D5513B", + "DisplayName": "Scavenger_Dash_Mask002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "842556EC-4EAC9918-27EAE78B-220148F3", + "DisplayName": "Scavenger_DASH_Outfit_STR001_GreenCammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"E8CE4B54-417D9A67-12B4B292-7BF49376", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":730 - } - ], - "EventCostList": [ + "Id": "D3B7955A-4FAEE485-42F358AD-D6754AD2", + "DisplayName": "Scavenger_DASH_Head_STR001_Fluo01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"25CA213F-463F21AC-06461192-5BF357B7", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":970 - } - ], - "EventCostList": [ + "Id": "8F307DB1-4C5C8C02-4648EFAE-8134E427", + "DisplayName": "Scavenger_DASH_Head_STR001_Angel_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"CBC26334-4E4D94F5-AA1D3AAF-46685EA8", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1290 - } - ], - "EventCostList": [ + "Id": "3538A7C3-4E464072-5D522A93-4CB1E091", + "DisplayName": "Scavenger_DASH_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"3202337A-40BA3010-3542F9AE-B7EA761A", - "DisplayName":"Ghost_AmmoOpportunist1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1720 - } - ], - "EventCostList": [ + "Id": "8D023492-4F176BFF-43C6799A-D3EB3AA2", + "DisplayName": "Scavenger_DASH_Head_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "AF330CDC-4019C499-7D10BFA6-A0EAAF9B", + "DisplayName": "Scavenger_Fog_Mask003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "84DBF7B1-41246372-690AFBA4-36B51C30", + "DisplayName": "Scavenger_Fog_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ] - } - }, - { - "Id":"19FB6205-4E644ECD-C831E29F-C5B9E501", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":125 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "907E22C4-48D304A8-4147B19A-F958089E", + "DisplayName": "Scavenger_Fog_Mask002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "F9D4700D-47DC559C-7CCE1180-0F3A318A", + "DisplayName": "Scavenger_Pathfinder_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "4EDACCF8-44B8025F-D89C7BAB-6B0005A2", + "DisplayName": "Scavenger_Toth_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "DC7D1D68-448FAE62-3A49F4AA-B7134FFE", + "DisplayName": "Scavenger_SMOKE_Head_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"5DA9F0DE-40A95322-DC5453A4-F85B7B2B", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":170 - } - ], - "EventCostList": [ + "Id": "0EA4B7BD-456E322E-E1F0E1BD-6D92F269", + "DisplayName": "Scavenger_SMOKE_Head_STR001_Bloodbeige_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"2D391C60-4941F465-AA4EE780-0AEF401F", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":230 - } - ], - "EventCostList": [ + "Id": "EC01A15F-4B29A9CE-EA4373A2-F1489DB4", + "DisplayName": "Scavenger_SMOKE_Head_STR001_Sienna_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"B9FD9CD4-489CDBCA-483E96AB-689B1FCE", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":310 - } - ], - "EventCostList": [ + "Id": "A97E954A-4218342B-16E727A5-89EFB2E6", + "DisplayName": "Scavenger_SMOKE_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"F732FE38-45585D24-E94AE39B-A12D5E71", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":410 - } - ], - "EventCostList": [ + "Id": "70A248D3-40C77F1E-552282AB-8D73EADA", + "DisplayName": "Scavenger_SMOKE_Head_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"2670422A-420A77D4-24F51AA9-6917F91F", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":550 - } - ], - "EventCostList": [ + "Id": "3D3B02BE-4E36B139-F8DB3C93-33437996", + "DisplayName": "Scavenger_SMOKE_Head_STR001_Longcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2750 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"A925877C-4FA6CB2C-470D11B7-FF487D34", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":730 - } - ], - "EventCostList": [ + "Id": "99752C6E-4F54F9D7-A4FFF3AA-9A50B3E6", + "DisplayName": "Scavenger_SMOKE_Head_STR001_Lightcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2750 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"9C2F6A4F-49A38054-D8A3DBB3-FF6DC7D6", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":970 - } - ], - "EventCostList": [ + "Id": "D142C695-415CE2C8-CB73B982-654ED778", + "DisplayName": "Scavenger_Ghost_MaskWarpaint_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "F6C3C028-43F4DBA8-4109A0BF-2D607DC2", + "DisplayName": "Scavenger_Ghost_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"B8E6EB01-4D43FC4E-7C5CEDBD-530969ED", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1290 - } - ], - "EventCostList": [ + "Id": "E2EDB91A-45D7F7A4-48A5CAB3-47E80ED1", + "DisplayName": "Scavenger_GHOST_Head_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 5000 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"1425EC14-4226E8A0-FD0B1497-56AFFFD2", - "DisplayName":"Ghost_Emboldened1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1720 - } - ], - "EventCostList": [ + "Id": "8C2CA5C9-45EED518-42003CA0-5AFB01FC", + "DisplayName": "Scavenger_GHOST_Head_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 5500 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"38E5F7F2-41E2BA11-77419BB3-12FC1ACE", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":125 - } - ], - "EventCostList": [ + "Id": "C153EFE3-4295A94B-5D1B1B9A-100E1972", + "DisplayName": "Scavenger_GHOST_Head_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 5000 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "65F41F9C-4728B91B-95574181-FA92A935", + "DisplayName": "Scavenger_Ghost_Mask002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "ADC2570E-4BD4D9AD-5FAB21B9-74B807EC", + "DisplayName": "Scavenger_Ghost_SuperNova_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ] - } - }, - { - "Id":"95D96ED9-48ABA024-206EF698-FEF7B356", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":170 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "3B230E66-400E89EC-74D50381-7C729D82", + "DisplayName": "Scavenger_GHOST_Head_STR001_Cardinal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"832CDFB7-4A4C1A77-BF4875BA-BEB31287", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":230 - } - ], - "EventCostList": [ + "Id": "129F5FE8-41D18932-6D3EF7B5-42F7370D", + "DisplayName": "Scavenger_GHOST_Head_STR001_Construction_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"A0138AA6-48CE0DF4-BBDB969A-25C32EB2", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":310 - } - ], - "EventCostList": [ + "Id": "53B5B1F1-47B59F3B-92F6B9AD-FCD9AB81", + "DisplayName": "Scavenger_GHOST_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"F501B9E3-4800BEA6-B29CFC87-C1584669", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":410 - } - ], - "EventCostList": [ + "Id": "ECA4FE98-44E3CE42-3AF7A18A-601BC932", + "DisplayName": "Scavenger_GHOST_Head_STR001_Cerulean_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"68F35564-4FFC3530-60461493-74549BD0", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":550 - } - ], - "EventCostList": [ + "Id": "373F0125-44963820-C02EB98B-FA62012D", + "DisplayName": "Scavenger_GHOST_Head_STR001_Mulberrygreen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"D5674BD7-4129FD5F-4C369589-30CF7252", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":730 - } - ], - "EventCostList": [ + "Id": "30A99A46-4AB3EEE1-DA559686-DC03EF02", + "DisplayName": "Scavenger_INK_Head_STR001_Warpaint_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "733A624F-49F34D46-59C084A4-325D3202", + "DisplayName": "Scavenger_Inked_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "84F36AFF-4D443C8D-EBA93197-9749AF0E", + "DisplayName": "Scavenger_Inked_Mask002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ] - } - }, - { - "Id":"828C25F1-48899221-FEBD1197-6BD91551", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":970 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "03175A29-41AB8800-F4CAF39A-DCDDC663", + "DisplayName": "Scavenger_Blockade_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "221B6B19-499A3094-4F8F4A96-9EB2B83D", + "DisplayName": "Scavenger_WayoftheWorld_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "0600201B-48B6E1F0-B583039E-01F8E909", + "DisplayName": "Scavenger_Demons_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "ACDEC403-4E1500A3-2A6383B1-B093DDA1", + "DisplayName": "Scavenger_INK_Head_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"19E643BF-4612E414-EBE75B8E-B069A15A", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1290 - } - ], - "EventCostList": [ + "Id": "A137A945-4F9E3CF6-3B09FCB7-34001711", + "DisplayName": "Scavenger_INK_Head_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"FDAFDCC2-49950B1D-C56CA386-CB8345B2", - "DisplayName":"Ghost_FleetFeet1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1720 - } - ], - "EventCostList": [ + "Id": "C5494A95-4B359CB7-12D738B3-5DB7BD4D", + "DisplayName": "Scavenger_INK_Head_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"1A09DB19-434DA733-AAD3D9B5-B1929CD4", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":125 - } - ], - "EventCostList": [ + "Id": "88960B3D-452691F9-AA56D1AC-1200EDEC", + "DisplayName": "Scavenger_INK_Head_STR001_Aquaperu_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"92ECE5FC-49294EE9-4DA0D4AC-003CA2AF", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":170 - } - ], - "EventCostList": [ + "Id": "C799E50B-4063AA81-9D9F3383-0386AF32", + "DisplayName": "Scavenger_INK_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "6D782D2C-4CE46253-01F6209A-E29C6657", + "DisplayName": "Scavenger_Sawbones_MaskCH06_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "C61F6239-466D9E63-716768B5-6519D570", + "DisplayName": "Scavenger_Sawbones_MaskDBD_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ] - } - }, - { - "Id":"FEE8A700-4DC0DDFE-1A22AC91-56675E92", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":230 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "0C06E9B5-426B42D8-C09C6B92-6938329D", + "DisplayName": "Scavenger_Sawbones_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "C0C21A2A-4898F029-2CFBC7BC-46D8F495", + "DisplayName": "Scavenger_SAWBONES_Head_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 5500 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"4FDB6DFE-4E545F79-3CEF5780-D40B84A6", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":310 - } - ], - "EventCostList": [ + "Id": "5C14F8C8-42B140E8-CD6428BF-C6659DD2", + "DisplayName": "Scavenger_SAWBONES_Head_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 5000 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"F8E2A136-48900939-B5B086B2-D61A6E43", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":410 - } - ], - "EventCostList": [ + "Id": "8A392458-44604821-4BBCE48B-87081279", + "DisplayName": "Scavenger_SAWBONES_Head_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 5000 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "63A7C0BF-4FF01454-4C218FA9-E1B3516E", + "DisplayName": "Scavenger_Sawbones_Mask002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "34918BAF-4507ECE3-22853D8D-6DFE81D4", + "DisplayName": "Scavenger_Sentinel_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ] - } - }, - { - "Id":"FA2F879C-4C3D9366-3289D890-6004D3E9", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":550 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "8D426FE0-48FADE78-61DF0290-E6935652", + "DisplayName": "Scavenger_SAWBONES_Head_STR001_Teal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"2729DEB0-4123FAF1-2B80D297-0F6E5C98", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":730 - } - ], - "EventCostList": [ + "Id": "034B368C-47C2EE52-1D728D8C-0B2543DD", + "DisplayName": "Scavenger_SAWBONES_Head_STR001_Daliah_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"AD6D6B38-4FA0CB8D-11149E8C-BD2E65CD", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":970 - } - ], - "EventCostList": [ + "Id": "6FAD75AC-42FDEAD2-40C9618F-8AD33AA1", + "DisplayName": "Scavenger_SAWBONES_Head_STR001_Cammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"6BE58FB1-40091754-841745BD-81B1CD52", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1290 - } - ], - "EventCostList": [ + "Id": "8BF84489-47B58EAE-4FCF548B-4B2B9201", + "DisplayName": "Scavenger_SAWBONES_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"C74A5C54-49B08CB7-5CABB08E-3AEEB567", - "DisplayName":"Ghost_HeatOfTheMoment1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1720 - } - ], - "EventCostList": [ + "Id": "F857A829-40DB6048-7DE344AC-F6BCCF15", + "DisplayName": "Scavenger_SAWBONES_Head_STR001_Heliotrope_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "A197C7D5-4D4CE082-64F8A5A2-92854250", + "DisplayName": "Scavenger_Switch_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"32065218-4E1A719D-EF1D3C93-95EE7344", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":125 - } - ], - "EventCostList": [ + "Id": "06FA8011-4F5FFDD9-F2FA1299-FB80E427", + "DisplayName": "Scavenger_SUBAI_Head_STR001_Warpaint_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "0E9F5436-4321360B-8AD1F6BF-55331D8C", + "DisplayName": "Scavenger_Switch_Mask003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "F201BA11-4D675F8B-62879199-B3E5BEC9", + "DisplayName": "Scavenger_Switch_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ] - } - }, - { - "Id":"9B2D6469-48E39CCA-5C256DBB-CB169543", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":170 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "38290AD0-4CA1A8F5-4F69FEA5-419BE040", + "DisplayName": "Scavenger_SUBAI_Head_STR001_HALOWEEN_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "5819C089-47495D9E-B1A2A1BD-EBD22715", + "DisplayName": "Scavenger_Switch_Mask002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "1EC7BF1D-47CFD132-FF3F6CA6-4CD93ABF", + "DisplayName": "Scavenger_SUBAI_Head_STR001_Muscat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"AD175937-4CC44614-DCC46DBA-60A9C670", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":230 - } - ], - "EventCostList": [ + "Id": "13E9E8B8-4926054D-4578A1B1-EEA19401", + "DisplayName": "Scavenger_SUBAI_Head_STR001_Candy_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"D63DC301-472FB350-5E0E00BB-878404C9", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":310 - } - ], - "EventCostList": [ + "Id": "50023F78-453E553A-0DDC648D-A08EE49C", + "DisplayName": "Scavenger_SUBAI_Head_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"8438827D-44AA0C80-7A8C85AB-A3A9481B", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":410 - } - ], - "EventCostList": [ + "Id": "3A58466D-47330708-D71D5192-E4DEFDA9", + "DisplayName": "Scavenger_SUBAI_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"1C2A2660-423DF1E4-C918A49D-F4B27B37", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":550 - } - ], - "EventCostList": [ + "Id": "ACA953EE-46AFF6B2-E7DF3294-1D98FA1F", + "DisplayName": "Scavenger_SUBAI_Head_STR001_Harlequin_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2200 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Head", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "EF8E713B-41CA7626-D83D39BF-05600FA4", + "DisplayName": "4408EBEB45A7641F2949BD8FD7608BA3", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.RN" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "B35F3634-47360EC1-7BE1BD92-D827E08B", + "DisplayName": "B417D7924F8962EBBB2136B175C3D709", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.RN" + } + ] + } } - ] - } - }, - { - "Id":"DF5AEE02-48C6F69C-140B67A0-38EFE2C8", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":730 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "6FF69DEE-4FBC9CE8-2CC2818E-E7864EAB", + "DisplayName": "7E7605834201A55AA4E431843DC11914", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.RN" + } + ] + } + } + ], + [ + { + "Id": "098612FC-4A3C8278-49BB55A5-9C2BC258", + "DisplayName": "26A908794CAF9226ECFF69BFC2F598A2", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.RN" + } + ] + } + } + ], + [ + { + "Id": "865A380D-485284B3-C5A9409E-04C22551", + "DisplayName": "F5E5C5F94B50EB3FA5B52281FAEB69D7", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.RN" + } + ] + } + } + ], + [ + { + "Id": "1EBB7B30-43BED679-F382B087-C0D6DE56", + "DisplayName": "Scavenger_Dash_Lowerbody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "2C130CCE-42C089D0-FAC21A84-75AD6660", + "DisplayName": "Scavenger_Dash_Lowerbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "1F79E213-41958B0A-8BD629AB-AD21ADDE", + "DisplayName": "Scavenger_Dash_Lowerbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "8A9D6A97-44EF9FEC-AA5A32B5-22AB3985", + "DisplayName": "Scavenger_DASH_LowerBody_STR001_GreenCammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"53954CDB-4EB93E44-EAB2EA9E-F4D9C19C", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":970 - } - ], - "EventCostList": [ + "Id": "5C8B71D7-4A041D14-47B57A8C-A0061277", + "DisplayName": "Scavenger_DASH_LowerBody_STR001_Fluo01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"ED943B33-4280F225-A7C2AE88-B3DC48B9", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1290 - } - ], - "EventCostList": [ + "Id": "3D365E56-4BB5C827-7C732C8E-56EFFAA0", + "DisplayName": "Scavenger_DASH_LowerBody_STR001_Angel_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"BC1ECDD7-40F5CF54-6939FC93-023148E6", - "DisplayName":"Ghost_SharingIsCaring1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1720 - } - ], - "EventCostList": [ + "Id": "F17D9E5B-40CC5D63-858706AB-64225160", + "DisplayName": "Scavenger_DASH_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"20FF1865-462FD26B-0253A08F-18EFAA10", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyA", - "Price":10 - } - ], - "EventCostList": [ + "Id": "49C0B9E7-42BFDAB2-6AC99589-99F29CAF", + "DisplayName": "Scavenger_DASH_LowerBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "74C21FF9-49E644AF-2231CDB7-96E9386E", + "DisplayName": "Scavenger_Fog_LowerBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "18D077C2-4D7418C1-2CDE2297-CC661AF7", + "DisplayName": "Scavenger_Fog_LowerBody003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ] - } - }, - { - "Id":"C90F72FC-4D61B1F2-FBC73F8A-4685EA41", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":170 - } - ], - "EventCostList": [ + ], + [ + { + "Id": "0ADDB41F-4216A32D-8F1853BA-B25D20F2", + "DisplayName": "Scavenger_Fog_LowerBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "B8360A73-45F41695-CD24AE9C-67CA1BA7", + "DisplayName": "Scavenger_SMOKE_LowerBody_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"ED14BB82-40B4AE81-24EDA69E-CD37AB10", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":230 - } - ], - "EventCostList": [ + "Id": "198B6E70-4CFC05EC-0CA62599-B2403926", + "DisplayName": "Scavenger_SMOKE_LowerBody_STR001_Bloodbeige_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"72FF4B49-4F025721-8238C695-F072D794", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":310 - } - ], - "EventCostList": [ + "Id": "0C83EA87-404470FE-0C8632A8-C41163E9", + "DisplayName": "Scavenger_SMOKE_LowerBody_STR001_Sienna_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"5F898223-42D5E60F-474080A3-6A7E6A5D", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":410 - } - ], - "EventCostList": [ + "Id": "A10C4FE1-40E59FE8-8BBC5198-60221F90", + "DisplayName": "Scavenger_SMOKE_LowerBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"E5197A3F-45E07D10-8E64A1A1-40A6315D", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":550 - } - ], - "EventCostList": [ + "Id": "4C072894-4310CD32-52C500B2-B39BD34F", + "DisplayName": "Scavenger_SMOKE_LowerBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"807857C9-498AEC65-75932689-C7733231", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":730 - } - ], - "EventCostList": [ + "Id": "80AEB6FE-4883FC91-167CFA90-2D2B4F4F", + "DisplayName": "Scavenger_SMOKE_LowerBody_STR001_Longcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1500 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"0BD046FD-439CDEC9-DB6B138A-F66B849D", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":970 - } - ], - "EventCostList": [ + "Id": "D77F839F-48462E2D-610EADA9-8C084E48", + "DisplayName": "Scavenger_SMOKE_LowerBody_STR001_Lightcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1500 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "B3F3E6D8-4078F1DA-E3C95AB5-BFDEE945", + "DisplayName": "Scavenger_Ghost_Lowerbody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"863513AF-4D63B2AF-0E70E7B6-70754E44", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1290 - } - ], - "EventCostList": [ + "Id": "02991FAB-4C755098-B6AFB584-141D130B", + "DisplayName": "Scavenger_GHOST_LowerBody_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": "2020-05-13T00:00:00", - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2500 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" - } - ], - "ParentTags":[ - { - "TagName":"Accessory.Perk" - } - ] - } - }, - { - "Id":"245165FC-494F7EE4-94BBA5AC-72C39F99", - "DisplayName":"Ghost_Shimmey1_Name", - "Purchasable":true, - "Consumable":false, - "IsWeapon":false, - "InitialQuantity":1, - "DefaultCost":[ - { - "CurrencyId":"CurrencyB", - "Price":1720 - } - ], - "EventCostList": [ + "Id": "B71F69BB-4C78BAD9-47BAEC8A-BF12D246", + "DisplayName": "Scavenger_GHOST_LowerBody_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ { - "Name": "Ghost_AmmoOpportunist1_Name", - "StartDate": 10003746, - "EndDate": "2027-05-19T23:59:59", - "Cost": [{ - "CurrencyId":"CurrencyC", - "Price":10 - } - ] + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 3000 } - ], - "MetaData":{ - "GameplayTags":[ - { - "TagName":"Accessory.Perk" + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "MinPlayerLevel":1, - "MinCharacterLevel":1, - "Origin":"None", - "PrerequisiteItem": "", - "FollowingItem": "" - }, - "Faction":"Runner", - "GameplayTagContainer":{ - "GameplayTags":[ + ], + [ { - "TagName":"Accessory.Trinket" + "Id": "089C4BAD-41536077-D811E3A0-8B88AD18", + "DisplayName": "Scavenger_GHOST_LowerBody_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ], - "ParentTags":[ + ], + [ { - "TagName":"Accessory.Perk" + "Id": "A5A2B378-4FDF6F52-ABA3FFA9-A7CD212C", + "DisplayName": "Scavenger_Ghost_Lowerbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } } - ] - } - } -]} + ], + [ + { + "Id": "D4D6E33D-42EE0DDD-A24DA983-C70209EC", + "DisplayName": "Scavenger_Ghost_SuperNova_LowerBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "7B195AE2-4D656F65-2D2C8FAF-D1E08B2D", + "DisplayName": "Scavenger_GHOST_LowerBody_STR001_Cardinal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "A798F030-4958C58C-536F6F8F-BAAD05D0", + "DisplayName": "Scavenger_GHOST_LowerBody_STR001_Construction_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "064F4615-459F3A2B-B45F178F-F0117B6A", + "DisplayName": "Scavenger_GHOST_LowerBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "96E9BDA9-445051F0-AA433290-8BB09D33", + "DisplayName": "Scavenger_GHOST_LowerBody_STR001_Cerulean_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "89D588AB-44EDEFA7-51F66083-DB3D9AD8", + "DisplayName": "Scavenger_GHOST_LowerBody_STR001_Mulberrygreen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "2F282A50-4F9D04B0-E3E8089C-DAAC31FC", + "DisplayName": "Scavenger_Inked_Lowerbody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "749580FD-4EBDDAB3-9664D982-CEA29F9D", + "DisplayName": "Scavenger_Inked_Lowerbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "7E2AB46D-4BA6F40F-03BA768A-6F31DB17", + "DisplayName": "Scavenger_Blockade_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "C12A3699-42837EE7-FB997BB2-174C68E5", + "DisplayName": "Scavenger_INK_LowerBody_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "EDF5C375-4CEA3F7E-CE047D93-2DEE5248", + "DisplayName": "Scavenger_INK_LowerBody_STR001_Aquaperu_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "373B94E9-424ED452-947E2E85-883484E7", + "DisplayName": "Scavenger_INK_LowerBody_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "CE0B0315-48F0663D-F2D100BB-E663C27A", + "DisplayName": "Scavenger_INK_LowerBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "600D9260-48A15095-CBDF4BB7-13A9D126", + "DisplayName": "Scavenger_INK_LowerBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "E6448020-488885E9-F3D1FDBA-8A70EBBF", + "DisplayName": "Scavenger_Sawbones_LowerBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "81DC952E-47A8E34F-B4A20E86-1F8C9641", + "DisplayName": "Scavenger_SAWBONES_LowerBody_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 3000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "1774E376-406ADD82-2F1C39A9-DC4CC04B", + "DisplayName": "Scavenger_SAWBONES_LowerBody_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "BB48A1F1-44A3142E-57400586-4A132A4B", + "DisplayName": "Scavenger_SAWBONES_LowerBody_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "DEA476E4-4FCCDCEC-4821B5B6-C0DD158F", + "DisplayName": "Scavenger_Sawbones_LowerBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "4302DF13-418EC9BE-3C8E119F-390AACE2", + "DisplayName": "Scavenger_Sentinel_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "36BCC657-417DD268-A77AA1A4-AED2BFCE", + "DisplayName": "Scavenger_SAWBONES_LowerBody_STR001_Teal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "BD18FE21-4C96CEAC-799B55AE-85C284F1", + "DisplayName": "Scavenger_SAWBONES_LowerBody_STR001_Daliah_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "003040E3-4803EBE6-391FCF8B-C2505F25", + "DisplayName": "Scavenger_SAWBONES_LowerBody_STR001_Cammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "9203B44B-4617C205-EFB8A2AF-C7F72434", + "DisplayName": "Scavenger_SAWBONES_LowerBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "434EB619-4D5980F2-A01659AE-B8C09026", + "DisplayName": "Scavenger_SAWBONES_LowerBody_STR001_Heliotrope_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "5DD48635-4855AEA9-825B79AE-6E306C82", + "DisplayName": "Scavenger_Switch_LowerBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "3BA8F461-49B91930-65DC0892-38F76770", + "DisplayName": "Scavenger_Switch_LowerBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "13B7FB66-428177A4-011C7798-784B1044", + "DisplayName": "Scavenger_SUBAI_Lowerbody_STR001_Muscat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "F685E72E-4F03AE76-73E4229F-53E81F76", + "DisplayName": "Scavenger_SUBAI_Lowerbody_STR001_Candy_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "611EA489-4E478A69-E52DB6B7-60995EEB", + "DisplayName": "Scavenger_SUBAI_Lowerbody_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "147749EE-4AE0C3C8-593B98B5-A2A27DF0", + "DisplayName": "Scavenger_SUBAI_Lowerbody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "F9EE5F22-45AA8251-6ABAF684-1CAD688E", + "DisplayName": "Scavenger_SUBAI_Lowerbody_STR001_Harlequin_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1200 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.LowerBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "F91593E3-46415A85-CFD0ED9C-EBFBBDEA", + "DisplayName": "Collector_LightenYourLoad_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "CE235B2C-497B4381-DA1742BA-22999128", + "DisplayName": "Collector_Revivalist_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "E30FA007-473CD247-2AE5798B-679DA419", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AA96AD8F-4D4572BC-100E06B1-9164F647", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D538AFA4-4F9EE94F-FAB0348E-225F62CB", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0E8EB651-40B51EE1-88A4819F-DF585E09", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D6968E3A-4A1FA968-F13097B3-5AF2D61E", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6363B5E8-4DE1F461-EB4778A6-1BD1DEF1", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5C954D82-4BD7E4C9-BAEB2FBE-266E3701", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4C303ADC-445C8006-47A6AA81-E224C58A", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8D6853D2-45F6F99A-78BF44B6-620C0F60", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0D0A9164-4E4F11BC-047A249E-03B1F0B8", + "DisplayName": "Collector_EvadeMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "04650B23-493C386F-A87E4894-7D26D79F", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "168A9C7E-4AF1C1D3-21885ABE-F7538DE9", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F329A772-4E21169E-99739196-DFC797D1", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "03B90768-4E4B8058-A274F1A1-958A7FB2", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B245A69F-41450754-88DD01A4-77A24385", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "72F7A311-494D0904-73C38C83-91AC6F89", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AD024E8E-46E05628-6FC5F0AB-07EC2FA0", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3A769A1F-400DC24C-97DF28B8-969992E1", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AC4E6602-4C3E56B3-675EA1B2-73AB7B6E", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B377AE60-47A4688F-E2164FB2-E341C525", + "DisplayName": "Collector_HerdMentality1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5889E8B1-404109B1-D4623B9D-D2057608", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D670A462-4045B40E-B7DE4D9F-4A1497BE", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "83C8C4CC-4B782FDB-B0349880-0F0CB0B7", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D6FA3760-472DD276-7D7C6CA9-0945F0BF", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7DDD64BD-42ACABB1-645972AD-E5DD8C20", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4D2C1F90-4DD74955-E18EB188-07464C82", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "884F7418-4F506A85-82747F93-EF5D72E6", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C8B62BB8-4729DB16-351D398A-FFAFF123", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2013C582-4B0C4156-3E9B5282-396A36C0", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9065B384-426E9647-14CF8499-B4D2BE1D", + "DisplayName": "Collector_SizeMatters1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2F3693A4-473188D2-787CC899-A70DC563", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5F747FA5-44A22749-98605E93-7363B6C4", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EAF93496-4116604C-0329FCA5-6BF27C1E", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "26FD3399-444E416A-E5BFDA91-3D2D0FC1", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5CC40F60-479CDB03-2E2B3D9D-2B4B68BA", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "32FCE940-40CB69F2-8305E884-40D5A87A", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CF50E6CF-48FB2276-71A856BC-B93BD342", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B4E4B8DB-4A1F4D75-B324E28E-B7B1207F", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D2299AD0-41AC1AE7-325F228B-BCAD3DFF", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "554DDAD7-403BF722-AA7B228F-F685812E", + "DisplayName": "Collector_SuddenInsight1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9B34059A-4199ACBE-E46BB4B0-472E7CC3", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4754B749-4BA24E02-72C5DAAD-5AC009CE", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EC0A4791-46666CF5-47C9F5B2-9CAAD5BD", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "594EA1A6-4C78A189-C2106C95-DCAE7030", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2F322221-45A7933E-3F1BEC93-3FA0D986", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E777B0B5-457B2B55-F2CE0D87-15AF2B55", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "09F53AE8-4AE76CC0-D381B2BB-2B077893", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "60A48468-42F73CD2-2B1EC795-57F1A279", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0ACCC742-4C600FEA-DB3710AB-FB4BFB43", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "69891F36-4EBC949D-9807F1BC-F9D95E0D", + "DisplayName": "Collector_ToilTogether1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "350B2607-46045292-37BF0CB2-2B60A9B8", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "97298609-48356C55-894620BF-8ED4CDCF", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2ACA6981-4FCC99FC-5F2EE0B0-8C4D5E5C", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8206DA29-4E48B55C-CF15CEAD-DC1DE13E", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8A5E53B9-4D27C821-B78CDCB1-64BD839E", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "30B7E7A6-4B751131-8ACBF09F-F99E7E9E", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BDC2B6B2-4108286E-735765B7-1B9640B5", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A64B1E13-4B8BB210-7738C1BE-A34968E7", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DB531F08-4A7954B5-F816BE9E-4F66C866", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8D267782-4D904029-F166DCBE-AC6BD457", + "DisplayName": "Collector_TreasureHunter1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E13EA0CF-46EE94F2-7F75BFAA-D48D29D1", + "DisplayName": "Dodge_BloodCarryCapacity_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "CEE62C37-472E49AF-36BC2A98-09EEF2AD", + "DisplayName": "Dodge_UsedCratesRegenFaster_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "2BD43A50-459BD909-4DADC49A-0F5F2551", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "984B3315-4FE2F069-382B0999-A1F4BEED", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "80820F19-48FE3E53-E6A48296-BADC2A9B", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "49FD9FAC-4873805D-1BE812BF-907A5F3B", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E578456C-4515E0D2-291A7FAA-99AE6C17", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4623A220-49BC5892-D4DA77B6-36050EE7", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CC43AFD5-455D35F2-E2C1C48D-9B113BB9", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4AD5556F-44338310-A806EA96-89EC699F", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4CBB3950-44575F9E-A97DE382-69B6149A", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9C61CAA8-4D68F094-8E5CB798-3618EC7E", + "DisplayName": "Dodge_ChanceToNotSpendAmmo_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "25BF0927-45634947-1A1C77A8-52342246", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "71D83BEA-40F74032-C260DA93-B535DF3A", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3C5DD9BB-4F684D57-D5BA6AB3-57AFC40B", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F3780197-48154C36-8ABB5795-94F6CDA7", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "73D032E2-4373AEFD-053BAC86-59626AAB", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0A730396-4C6E62F3-693B988A-1D4D2CD1", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "317644DB-4B3081D4-D301D8A4-B76935BF", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AB87F094-42120FFF-6FD0C2A3-C5F133E3", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AAB3800D-45A7E466-814D31BB-AA23C4D9", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "041286D4-4ED155E9-B08ADEAD-D647FFC8", + "DisplayName": "Dodge_DamageResistRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "97501DEF-49362510-7AEDCAAB-2ADEDF4B", + "DisplayName": "8F752CE2426F680FC1FDD1914BEB8F8B", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "33C33E06-432AC0DE-64158A8A-41145D8A", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8CA68C41-427D2758-CC8F63AC-7D01E8D8", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "047EF3FB-48C3BA45-374657BE-AE90707D", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "32DABD16-440CBC1F-37FFC398-A995CB16", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6B267007-4B73F8AA-C95F0794-0D6EFE0A", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "98DADEE3-4B8F7ED3-084230BA-BAA7EA8A", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1D3772A3-410BC59F-3556E987-BF0C167C", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2A08CD6C-49111E6F-3739FF8F-8B5B57FE", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B44C3C7A-43E065FB-D7E9169D-172987C3", + "DisplayName": "Dodge_FasterBloodDeliver_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "60542B19-472C7AAC-EABFAA83-D8112ACA", + "DisplayName": "62BC10614CF4EE64A6296F99B7ED6D27", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C01CD6B5-43CD1D56-0D6CAA8C-4048AB85", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3E01F8FC-4FBBDF78-B8D768AC-43C7741D", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CDF0CF39-4DF8ECFB-49C2A8AE-92BAAA78", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8251BCB7-42EE7DD4-A860E187-B13DD9DE", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CD0936BF-40E02952-21FF1D90-428B800A", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5596427A-47EFEC5C-9D613A9B-10476DBE", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C551DB48-4B94D759-50A5D6A0-7EE0B97A", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "99878F5F-452B608B-B3202288-5DB95C23", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C90A181E-45BF8351-5EBE3D93-820E9A8C", + "DisplayName": "Dodge_FasterCrateInteraction_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "105AE7CE-41DBBBE9-2EEBFBB3-2FDFEC20", + "DisplayName": "3DB8AC9D4A487E02226E3991D9C7BE80", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "83FBBC7F-491C9C6C-61596B85-8BE9E0B8", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C23A3E48-469C4630-D5CB669B-65F86542", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C74F3BFB-4B1020B9-A33BCB86-DF5BD142", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3D1CEA18-4200C624-864F1B9B-2EA6D6F8", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "06BE643F-407D4CCE-EF259D87-12AD8EF7", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F5025D31-4E42C17E-603001A7-089E453E", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "43CCF7F2-47D3BDC1-8061A397-0549AA3F", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6C2EDB39-42C4C705-51234583-A82ADDB8", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "95E78CDF-42FFBA58-A258939C-5282958C", + "DisplayName": "Dodge_StaminaRegenDamaged_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FD1F569B-450C253D-3EC750A6-8A9A177A", + "DisplayName": "C3A169DA42B1D880F617B8AE129F01DF", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "88A823B8-45E70E80-CC4F9BB6-E4EAD02B", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "08218CBA-4F314037-70364F8A-BB50DDD3", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "20448CF9-452155D5-1CF3A596-AEEA9F93", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7A786A46-4BFC405C-04E9B186-B49DACF7", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DAE19585-4FC3806A-95D9068E-E7CDDE57", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0CEFFC31-4C0F4CB6-07D9E9A0-ED6B5902", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E0E028D9-493AF9E3-926AF2A6-A65473C3", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F24A1CA0-4C9D39CE-214330BA-19F77496", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "74110902-4DBCCC06-DD238EB8-22801F29", + "DisplayName": "Dodge_StaminaRegenRevealed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1F5CD900-4224C567-46D81991-AA40448A", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "1E08AFFA-485E92BA-FF2C1BB8-5CEFB81E", + "DisplayName": "Ghost_TearItDown_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "E4892E8A-495FFB38-F90729A1-C97F3AC9", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D877B29A-4EF20A04-7BEBF69A-18B2A1AB", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5A8F3E35-4CBC6F8B-5BD015AB-89DE031A", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "51CAE9D7-47988206-193B08BA-D648FF96", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "287E08D3-41A4C1D7-9E16A086-E603A926", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5B87A706-458F7D1E-CE107C96-F90C547F", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E8CE4B54-417D9A67-12B4B292-7BF49376", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "25CA213F-463F21AC-06461192-5BF357B7", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CBC26334-4E4D94F5-AA1D3AAF-46685EA8", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3202337A-40BA3010-3542F9AE-B7EA761A", + "DisplayName": "Ghost_AmmoOpportunist1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "19FB6205-4E644ECD-C831E29F-C5B9E501", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5DA9F0DE-40A95322-DC5453A4-F85B7B2B", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2D391C60-4941F465-AA4EE780-0AEF401F", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B9FD9CD4-489CDBCA-483E96AB-689B1FCE", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F732FE38-45585D24-E94AE39B-A12D5E71", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2670422A-420A77D4-24F51AA9-6917F91F", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A925877C-4FA6CB2C-470D11B7-FF487D34", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9C2F6A4F-49A38054-D8A3DBB3-FF6DC7D6", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B8E6EB01-4D43FC4E-7C5CEDBD-530969ED", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1425EC14-4226E8A0-FD0B1497-56AFFFD2", + "DisplayName": "Ghost_Emboldened1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "38E5F7F2-41E2BA11-77419BB3-12FC1ACE", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "95D96ED9-48ABA024-206EF698-FEF7B356", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "832CDFB7-4A4C1A77-BF4875BA-BEB31287", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A0138AA6-48CE0DF4-BBDB969A-25C32EB2", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F501B9E3-4800BEA6-B29CFC87-C1584669", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "68F35564-4FFC3530-60461493-74549BD0", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D5674BD7-4129FD5F-4C369589-30CF7252", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "828C25F1-48899221-FEBD1197-6BD91551", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "19E643BF-4612E414-EBE75B8E-B069A15A", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FDAFDCC2-49950B1D-C56CA386-CB8345B2", + "DisplayName": "Ghost_FleetFeet1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1A09DB19-434DA733-AAD3D9B5-B1929CD4", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "92ECE5FC-49294EE9-4DA0D4AC-003CA2AF", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FEE8A700-4DC0DDFE-1A22AC91-56675E92", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4FDB6DFE-4E545F79-3CEF5780-D40B84A6", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F8E2A136-48900939-B5B086B2-D61A6E43", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FA2F879C-4C3D9366-3289D890-6004D3E9", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2729DEB0-4123FAF1-2B80D297-0F6E5C98", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AD6D6B38-4FA0CB8D-11149E8C-BD2E65CD", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6BE58FB1-40091754-841745BD-81B1CD52", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C74A5C54-49B08CB7-5CABB08E-3AEEB567", + "DisplayName": "Ghost_HeatOfTheMoment1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "32065218-4E1A719D-EF1D3C93-95EE7344", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9B2D6469-48E39CCA-5C256DBB-CB169543", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AD175937-4CC44614-DCC46DBA-60A9C670", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D63DC301-472FB350-5E0E00BB-878404C9", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8438827D-44AA0C80-7A8C85AB-A3A9481B", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1C2A2660-423DF1E4-C918A49D-F4B27B37", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DF5AEE02-48C6F69C-140B67A0-38EFE2C8", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "53954CDB-4EB93E44-EAB2EA9E-F4D9C19C", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ED943B33-4280F225-A7C2AE88-B3DC48B9", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BC1ECDD7-40F5CF54-6939FC93-023148E6", + "DisplayName": "Ghost_SharingIsCaring1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "20FF1865-462FD26B-0253A08F-18EFAA10", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C90F72FC-4D61B1F2-FBC73F8A-4685EA41", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ED14BB82-40B4AE81-24EDA69E-CD37AB10", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "72FF4B49-4F025721-8238C695-F072D794", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5F898223-42D5E60F-474080A3-6A7E6A5D", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E5197A3F-45E07D10-8E64A1A1-40A6315D", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "807857C9-498AEC65-75932689-C7733231", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0BD046FD-439CDEC9-DB6B138A-F66B849D", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "863513AF-4D63B2AF-0E70E7B6-70754E44", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "245165FC-494F7EE4-94BBA5AC-72C39F99", + "DisplayName": "Ghost_Shimmey1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "261144CC-43A9F74A-60506AB0-335B23B2", + "DisplayName": "Ink_MaximumHealth_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "92B767F4-42A89C87-CC3C9CB5-D279D6EA", + "DisplayName": "Ink_MaximumStamina_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "366DFB08-41631FE3-A1F4FE9B-F814CF2C", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EF5BBBFD-49DEEA17-4AA55989-97FB6B7B", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "53E8A0D0-44F3FA2A-808503A7-02BE1842", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C2C46E90-47209670-A929EBA1-55D5AC03", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "10160BE6-4538EF4D-5D3B4E82-D21D9F04", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "12CB77B4-4BB2FE4D-52F82FA9-CC963DE5", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8BAE2CDA-4A1ABC84-FB82C694-68B26253", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5AE77102-4971ED9C-8DE3188A-30BE3946", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "180B90BC-4577469F-4D52DA91-7A7FED6B", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CB95BEF1-42FE7EEA-A6D9828D-E3E4D6EA", + "DisplayName": "Ink_ClingWrap1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "78C4B673-4B7C9DD1-D2488EBA-8EB5A7E4", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "75CFE420-46872194-0B8912BB-E45092F0", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BC41691D-45E103C2-FA81DCA9-905AEC9C", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "61AA5ED3-4F4A4730-99FCDEB1-1D0ABDA0", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8BBD6D6B-46D7EA3B-FA362E90-1C11A0B2", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "68EB6BC4-4AEF8373-1217EC8E-03598618", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5EE726C2-48CA78A6-F36F45A8-A2D66E00", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9131CB0F-4EFC48F3-A5D7FB90-55DBC071", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A65569E5-42E08F1A-732F9EB4-105BC5D9", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "619E3632-467AB7AB-6B80EAB6-0D82121F", + "DisplayName": "Ink_DamageDodger1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6340FA56-4B0C4E69-2AD174BB-743607F5", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "41888078-4C86E2A8-1AB395A9-98B09901", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "75831C73-438DA8C3-E873339E-58FC1674", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CCA0BF8C-430D4BFC-1EE09591-4BFF5E4E", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "50DBE604-449E3B97-237B7FB8-282DCFB2", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "29335511-48051800-995144B4-23FEC172", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B70D0441-477300A3-7996B4AC-DC021260", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B7FAFD77-40EDEC10-CF49A482-96D4B1C5", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B4065241-45105F5E-F8089581-2A8B46A8", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "72D05D97-45E11050-3997F9A1-156782B5", + "DisplayName": "Ink_KeepHangingOn1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "75A9B5A3-4CD7815B-6D772485-06897122", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9EB999F0-4DA57E93-59D304AA-061284D3", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1F0AC96B-47319A47-310A4A97-D0F44B11", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7919E64C-48E49F57-5CB7178B-E373CFEA", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B0192F29-4B3837DD-4F9DC48F-4B1C7995", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B002C36C-4F206CF9-E8EFD493-84101F5C", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "80C3A8EC-4F5437CC-350CD28B-3115D816", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0E80E49A-4296166C-6ED1FB97-2DAC9262", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "61775317-436C6C40-BC2C659E-4EA0D9E1", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "293398CB-423EF1C9-196C0BA6-17CD3617", + "DisplayName": "Ink_DeliverMaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5681640F-41DF9BEF-0659C3A9-51BFC01B", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E3B30F55-417858D2-D6E017B2-360B88D6", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3506BD4A-471DF622-42C2DDAB-46DCBB80", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "54098716-4DA1348F-F066CC92-EC3E748D", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D73CB2D2-4A0FF4CB-B073C4BB-E4C5D946", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "873E0BE4-49FBC563-A14FD1A7-65A92C86", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1FC4C768-4FAADF90-688F4CBD-2CD34C3C", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0249B66A-42343526-F8BF5497-1DF526E5", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EB3720D7-47B44EF8-8FCA4E89-7EC8C1CA", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "24671E03-417B9691-CBF3B080-75630ED5", + "DisplayName": "Ink_Resting1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "48C47A43-41B0E3E0-01F3D185-37658D40", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3B0649F0-41FD918F-FBD624B1-5B64FF4B", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "50FB8AA8-44F1F9DC-B0D04790-010A5457", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0BC95083-4BEA8778-AA29D8BA-A14728E3", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5A7545B3-4F4FB2EC-39472BBE-6680B2EE", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2C8DB863-441E5B70-610BCAA5-91E7FF5B", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1146459D-4368AD9D-25C64A8C-B1963524", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F2F5C6BB-4536127C-D0D07684-22BCF154", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DFF40D82-4EDD8D0E-F7DC4EBE-81E7D121", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5EEF1C60-40DE7AB7-66F9E487-95BD0500", + "DisplayName": "Ink_StayingAlive1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8EFCD5CC-464EBFE1-B7B03A98-4563710A", + "DisplayName": "Insight_Crawler_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "336D01F8-4D412B0D-0D38F393-11CA8D64", + "DisplayName": "Insight_FullStart_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "F05493F0-4CF30636-487243B5-776882D6", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "69B2207C-48098CEF-66D2FBB0-C0CBF7DA", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "332697BF-4D9CAB64-5CD7B3AB-BB3A0324", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "089D250F-49D3BF09-556CE9BD-360A1994", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E34B96F9-4D82029D-83EF6F90-2DAEDB77", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C479A7B9-481B95E2-F67449B5-3DE201BE", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B1A8E057-4C36DDAC-D57E219C-7F699208", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "73FDF2C3-4EE680B3-0F1B568C-0C2F1F76", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D62568C5-47B9F5CB-95B82E89-C7B5DF5F", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BA71E3A8-492CFB9D-33F13F89-FBA3EFA8", + "DisplayName": "Insight_Firmware1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CAA84E29-4F02ECF8-8B08FB96-E481194D", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BCFB06D5-43FDAB34-4CB2E9A2-F68EBF40", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B2BC1DD1-4B33F2FE-31AA7284-2FEC3C2D", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0EA4EE82-4E173A94-321092BB-D5164050", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "840D4D27-456FDA50-62BCF592-726B93F7", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "496A1856-4BCEB0D3-C943E9B8-ED3790CD", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D2C3AA3F-4C845380-931EFBAE-3D9717B4", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "98E745CD-4D6988DA-2CE56588-EC9EA2C4", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5BB88A0C-4AF70D96-ADA7D9B1-AF183CD5", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DA306F08-4984D267-287A2D82-BCCB2918", + "DisplayName": "Insight_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6A8FA1C8-45AE1D75-76BD87A5-3F7ED4A4", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1D86DC08-4F0C4D3F-ED2552B0-8CC2A252", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C4F3B1A5-49C74E05-FAE973A5-24EB2734", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "07F69DF0-4A52519A-3B301B92-3C105277", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D62B0CDE-478D1002-30D48C9F-D13C456E", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EB5DA947-40E7A30A-FC7E6598-5C95E954", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1C9DC6CA-47CC23B0-3BCEF399-E716EAEB", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AD97271B-4E7E71D1-AF1843B5-DD5005D1", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DFDAB3BD-40C9E394-C35E8CB1-32CCA3E2", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "45FE0E77-46930264-1DE116B7-D42C2BAB", + "DisplayName": "Insight_OccularImplants1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1258297B-4BCBFB39-628E22A5-8C77EA87", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F287ADAA-44271194-7C9BE6B0-B3030F93", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5FF31606-4261F768-95ED0EB8-30E9184B", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D8222C7B-43D329E3-80496AAC-B190D183", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "624556DC-4373E81D-4FFAD8A9-0D0FECCD", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2C3447E5-4515FB88-8BF0DAA9-B01AA7A0", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A07E5714-432182D7-E4C4779A-478BD4AB", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A2C2B6D9-4F9ED3D1-0B39009F-2B89EDA5", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6FAC79C8-40FBAC0B-C59BE7B8-E2568FC5", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "591DF36F-470E5297-81296DB7-5E092463", + "DisplayName": "Insight_RichGetRicher1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C7A898A4-4F208F9F-85CE7596-9A98242D", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "748671E0-4848191A-65419C8F-ED546AA2", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0537F9A5-4016B93E-5BE8A697-9BAEC91D", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "36D74C97-4A5ED5B3-FEB1C08D-22C7C5FD", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8BD87A04-40DAF255-AD0D07AE-807FF56B", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8A3F034B-41D0924E-322C41BA-555BAD14", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A2827FE2-48BBFE57-949643AC-874E6661", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "06E25D19-42AF2BAA-C78148B7-D53AFDEA", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "155D2FBA-46680E7A-B51FA294-7ECADA01", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "844C0CA4-42B977C9-5E176DAA-6D4C56CA", + "DisplayName": "Insight_Sniper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A858CAF6-40A82450-8A028D89-AFC44366", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B8EED46C-463FFC70-BBC122B9-F05FF9F7", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FABC2C4E-40C5FA74-D13C9D9B-BDA12C20", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A98210A1-445FF0F0-81DA24BC-28BD0D88", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BED54888-465E38C9-2F02F194-499D8B8A", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E4E2E950-427E3B01-1B36ACB1-A92F4EEB", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D93DE25C-4EDA7B75-7F8379AE-A40AD6B3", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BD3A85CA-49BC6B9B-189E9498-2871FB90", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "64F58F65-4238684B-B3FA7A82-0A68B862", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "878EA759-4E28DCC2-30E0E99D-72D05939", + "DisplayName": "Insight_ZeroCool1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "109BC590-4DC1272D-70822EBA-79CC85B1", + "DisplayName": "Sawbones_QuickRescue_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "54B3EF79-4FCB0643-C4644FA1-5BEF31D5", + "DisplayName": "Sawbones_SprintSpeed_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "9FCAAC91-43A827E7-9DC179B7-62B1E520", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9A904261-4697C385-E5744C90-3F5E19C3", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "25B8F527-44CAEB17-E599888B-5E80162E", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EAC46B4C-4979624C-D3C15B91-89D1CC93", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2822F9B5-47761DD6-9A485392-0A5A3A67", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "46686C2F-49C88ADD-7635A4B3-D5B1D594", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FF582108-4098286D-2E31E991-92BB0988", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "77EF1CAC-48919368-F529018D-6E512B94", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6BABAFD7-4690D55F-470764A1-ACC7DFE1", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "67B8A746-43EA6CB8-A41457AD-5A576D69", + "DisplayName": "Sawbones_Cardio1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "274EB0B3-4AB39E46-8BFA878F-7E87465B", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4AE4801A-440EFF8B-54760EBF-F92B128C", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "42E05FC9-4E6B09CC-BB6208BA-F94AE98F", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2F12511B-412A1B31-0A55E09C-DE252ED7", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F20F6E2E-4F316212-4A476BB9-FE07E407", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A966101E-4DF68988-7A9B0EBB-55CA6F42", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "38C5D09A-4A0E7175-283DA691-B6491B6F", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4AA97718-4CF5BD38-555EB5B1-7C03F058", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3D1CDD6C-40CA5955-251B5492-2F016A7E", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ECEBC431-4D3A0038-B44F0086-E436AE58", + "DisplayName": "Sawbones_FriendsForLife1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BE1C0D4C-4CE08611-22BE22B2-736D9091", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F71C636F-453DA292-ED7AF2A5-95292462", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7F337958-40136A9E-BC0186A5-29E4A82A", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C40EB3E3-4F9864E4-A9BBD2AE-DC692224", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "496CC3BD-4E3DD73E-70894C9F-28D74BDE", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F719FEAB-4BD1A868-35B1FDAE-54D8ECA7", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C3C093AF-47C8EC0A-9955B58F-55132352", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9472E86E-4D354E37-24DFEAAF-6C146990", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6E813246-4381C5AF-299E908B-68C2565B", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "69F917C2-461E17A4-BF5125BB-53486AC0", + "DisplayName": "Sawbones_HealFaster1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "04FC953E-40A60120-0FA1C181-A0D3C913", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D81228EB-4E6440D7-398D6583-AF9304D0", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CBE63CAE-4215643C-4FDE1CBB-4DF8B265", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0498C28C-4468EC81-BA43B585-D4D759ED", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "50F9173D-4A2E6AC6-49390393-AD8A1876", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "70DF69CE-4B3FC57B-A650BEAB-AF64C737", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B0164024-40755F9F-0E580E8B-D4309020", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4F668FF6-48124601-6585DBB4-F7C2CDF8", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1C4A65DD-4FCF5F27-088E16A2-A8B3D42A", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FEC1059E-484060C3-84E2F4B3-DAB9ADDF", + "DisplayName": "Sawbones_SecurityBlanket1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D495BCB5-43F2D005-B559C888-E4BF2B3B", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "503AB47B-48E00374-46EC1197-C19A9194", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FC3D5C6B-4D2547CD-A76CE8BA-1D536A7D", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CD7D1F82-4FA432FE-A6310B91-EA158DB2", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D738850D-4DC5527A-6140CDBB-B8006512", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E840051C-40D00323-98A307A7-F8042EFE", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C194EF53-4DE59947-A26E8198-F92DE085", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "897984F8-487FD493-976858B1-4F118084", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EE4BFF83-4606642C-C8AEC89E-E00AA153", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D2BF2FBB-403165E7-68984684-CACF8CA8", + "DisplayName": "Sawbones_Splash1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F2768C45-41C8262E-FF4922B3-72AB7306", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0EE6E3C0-4A608FF0-CE64A881-3A9EBE26", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D500FB67-476AFA41-9553BF9F-384A9CF2", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "75CED6B2-4CCA9FDA-4D976990-D0A65172", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3D5693D9-41E0CFF7-FB4BB4A3-46775074", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "145C5312-4968EEC8-7E2206B1-EDDFE74C", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CE215D4B-4C691D83-842CD395-F893B250", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E3139A50-4D205C06-438904B1-ECD68D44", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E9564AFF-410C3F82-BD53B789-0DA9DB97", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A1463E12-485BA0B2-D678EA86-3BCC8ED9", + "DisplayName": "Sawbones_UnderFoot1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6A45DC54-4903218C-EC18D4B7-A27CEE51", + "DisplayName": "Scavenger_Dash_Upperbody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "47585FC8-4C76C3BC-4F628095-171CD354", + "DisplayName": "Scavenger_Dash_Upperbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "B71C59F9-416BFBA1-B2BDD1A8-00956ED4", + "DisplayName": "Scavenger_Dash_Upperbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "EA383D54-45E193E4-CE7EFAB6-5A8209A0", + "DisplayName": "Scavenger_DASH_UpperBody_STR001_GreenCammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "E15D6D55-46CA760B-59FFD39C-E7A023FA", + "DisplayName": "Scavenger_DASH_UpperBody_STR001_Fluo01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "15D7ECB6-48CDBDF9-CBD35AAF-68E92158", + "DisplayName": "Scavenger_DASH_UpperBody_STR001_Angel_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "E685E3D7-4121082B-BD4C6E9A-261A5ABA", + "DisplayName": "Scavenger_DASH_UpperBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "BD56A4D2-488D793D-56A3A597-011230F7", + "DisplayName": "Scavenger_DASH_UpperBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "D1B93B6C-4A3DB7CF-D88C2685-29A4E982", + "DisplayName": "Scavenger_Fog_UpperBodyCH04_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "642E3BFA-4F89698D-D59E64AC-133E266B", + "DisplayName": "Scavenger_Fog_UpperBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "7B2C394F-46245407-23117D83-A6752CED", + "DisplayName": "Scavenger_Fog_UpperBody003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "DF5E3FD0-49902AB5-DC1B3C8E-22625AAF", + "DisplayName": "Scavenger_Fog_UpperBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "92948924-4AF1ECFF-E3B7FAB1-2EFB7D30", + "DisplayName": "Scavenger_SMOKE_UpperBody_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "CCF1842E-45E387C4-E171C1AE-DF179526", + "DisplayName": "Scavenger_SMOKE_UpperBody_STR001_Bloodbeige_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "BE236C3D-4E956B69-39551586-C9EC669C", + "DisplayName": "Scavenger_SMOKE_UpperBody_STR001_Sienna_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "752FB291-48BB7C07-977E4FA8-51824319", + "DisplayName": "Scavenger_SMOKE_UpperBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "ACE0A030-4A74F795-A6466192-FCBC7CBC", + "DisplayName": "Scavenger_SMOKE_UpperBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "566F8090-4989D5AB-C29178BD-7DD2995A", + "DisplayName": "Scavenger_SMOKE_UpperBody_STR001_Longcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 4500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "45D82E40-44C3319F-3AA388B3-66083718", + "DisplayName": "Scavenger_SMOKE_UpperBody_STR001_Lightcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 4500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "8AF090A2-40083DD5-DC591781-5FC4636E", + "DisplayName": "Scavenger_Ghost_UpperbodyCH15_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "97F39533-47EE8BE1-0A29D39E-3C4F0D1E", + "DisplayName": "Scavenger_Ghost_Upperbody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "D37E87A5-44F74286-0FC17FA5-D930EDC9", + "DisplayName": "Scavenger_GHOST_UpperBody_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 6500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "00CBEDD2-45ABE9B9-D9741CBE-6557A57A", + "DisplayName": "Scavenger_GHOST_UpperBody_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 9000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "49D89283-412C331C-944D648A-8FA5AB1D", + "DisplayName": "Scavenger_GHOST_UpperBody_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 6500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "D0CF9842-410B57FB-6EEA7D99-007CD2A4", + "DisplayName": "Scavenger_Ghost_Upperbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "EAF477EC-4CE75EAC-AE8E4ABE-22AD8E4D", + "DisplayName": "Scavenger_Ghost_SuperNova_UpperBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "369990C3-4D8165EB-8707528C-E5D817A6", + "DisplayName": "Scavenger_GHOST_UpperBody_STR001_Cardinal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "3426BD3A-4256F1AD-FB934DA1-E632F3B1", + "DisplayName": "Scavenger_GHOST_UpperBody_STR001_Construction_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "F9E529D6-4116B178-E0B3499E-9232C1B7", + "DisplayName": "Scavenger_GHOST_UpperBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "6023BF2D-41423096-0A0687AD-E59DA60D", + "DisplayName": "Scavenger_GHOST_UpperBody_STR001_Cerulean_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "27889E3D-4CB1D5C6-39EAFEB0-6D6A6F46", + "DisplayName": "Scavenger_GHOST_UpperBody_STR001_Mulberrygreen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "311E10C4-45F42E24-8BD2C4A7-2126E142", + "DisplayName": "Scavenger_Inked_UpperbodyCH09_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "B782F75E-4A250FBD-58BED0AA-A2F9B4B0", + "DisplayName": "Scavenger_Inked_Upperbody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "8DAEE918-4187EB9E-5716BABA-686C2B8A", + "DisplayName": "Scavenger_Inked_Upperbody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "97CD4AEA-444D6BD2-CD218E92-B7B12A33", + "DisplayName": "Scavenger_Blockade_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "01D14003-4A7B9B57-C0AD80A6-0E3C4A48", + "DisplayName": "Scavenger_INK_UpperBody_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "D5D5FBD8-46FA4F17-08C2C7B4-E640320F", + "DisplayName": "Scavenger_INK_UpperBody_STR001_Aquaperu_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "25D9390F-4D05199A-95D0F8A0-701BF782", + "DisplayName": "Scavenger_INK_UpperBody_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "A6F5F26A-4A68AC56-C665CA85-06115234", + "DisplayName": "Scavenger_INK_UpperBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "1D92B772-4F776904-21BEFDA7-0FA5A883", + "DisplayName": "Scavenger_INK_UpperBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "B4909510-49DB5715-2E87E096-7D6D8C68", + "DisplayName": "Scavenger_SAWBONES_UpperBody_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 9000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "24EADA80-4F62075E-9BD526B3-E0EE724C", + "DisplayName": "Scavenger_SAWBONES_UpperBody_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 6500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "D95A9BF4-4D2E984B-5CCCD8B8-16AC20CA", + "DisplayName": "Scavenger_SAWBONES_UpperBody_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 6500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "220FEF0D-465B0DE2-3080759C-D682F8A0", + "DisplayName": "Scavenger_SAWBONES_UpperBody_STR001_Teal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "F3A97C1D-47E0D9A1-C0C8498F-96DE3F78", + "DisplayName": "Scavenger_SAWBONES_UpperBody_STR001_Daliah_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "F20450C7-4C828DC6-47257386-88A8E63B", + "DisplayName": "Scavenger_SAWBONES_UpperBody_STR001_Cammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "BB65CE9B-470F1847-208DE8AF-8A62E6FD", + "DisplayName": "Scavenger_SAWBONES_UpperBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "0517B790-4CF5C567-E2BD94B0-5BE1DD4A", + "DisplayName": "Scavenger_SAWBONES_UpperBody_STR001_Heliotrope_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "44DD11E5-4FF689A5-53D297AB-4FC1A7B2", + "DisplayName": "Scavenger_Sawbones_UpperBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "BB7B6E22-4B1A58EA-9FBFD6A0-924D3B4F", + "DisplayName": "Scavenger_Sawbones_UpperBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "40E89D55-4CD74E39-8E5BAF86-369E7C81", + "DisplayName": "Scavenger_Sentinel_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "81688A48-4ADDF511-C219C89D-F3B2CE4F", + "DisplayName": "Scavenger_Switch_UpperBody_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "D4261897-40230A13-489C10B5-6012F3FC", + "DisplayName": "Scavenger_Switch_UpperBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "A2D9A0CD-4A2E44FA-BBA59198-0C5BA880", + "DisplayName": "Scavenger_SUBAI_Upperbody_STR001_Muscat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "D3A5A3CD-4E6F86CF-4D544EAF-056BB957", + "DisplayName": "Scavenger_SUBAI_Upperbody_STR001_Candy_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "8C68E648-432F5B2B-23D05089-CDFE66A8", + "DisplayName": "Scavenger_SUBAI_Upperbody_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "9977FD08-41A43273-54BCD2B1-9EEC8C4E", + "DisplayName": "Scavenger_SUBAI_Upperbody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "4E2EDB3D-499A08BA-56A88BB1-DCE0AEB2", + "DisplayName": "Scavenger_SUBAI_Upperbody_STR001_Harlequin_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 3600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.UpperBody", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "92CC1AC0-4868D1F9-A99E6EA3-5BCDAD56", + "DisplayName": "Scavenger_Dash_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "3D4A5A79-4DC103C0-54FB6EB5-83FEAF68", + "DisplayName": "Scavenger_Dash_Vambrace002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "915A26C6-4B1F2F76-534DC5A0-B3141749", + "DisplayName": "Scavenger_Dash_Vambrace002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "5846CD4A-4B6E464F-32723D84-87E11379", + "DisplayName": "Scavenger_DASH_Vambrace_STR001_GreenCammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "75318E84-4DF7BE0D-EFEFC6A3-39A76544", + "DisplayName": "Scavenger_DASH_Vambrace_STR001_Fluo01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "07A39BEA-4A74DBA6-A1E09AAA-4B101EB7", + "DisplayName": "Scavenger_DASH_Vambrace_STR001_Angel_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "5D7EFE87-4FAE8D10-C38067A9-F861AA56", + "DisplayName": "Scavenger_DASH_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "040D3AC1-4C54057D-E570A2A2-A55801EF", + "DisplayName": "Scavenger_GHOST_Vambrace_STR001_Woodcammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Dash" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Dash" + } + ] + } + } + ], + [ + { + "Id": "0743E9B4-4190283D-81A76480-701EB07E", + "DisplayName": "Scavenger_Fog_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "33E6325A-4E098D5D-47DBD48A-DE746024", + "DisplayName": "Scavenger_Fog_Vambrace002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "E5010955-45F87E64-AAFC74A0-4F1CFF5B", + "DisplayName": "Scavenger_Pathfinder_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "CC66E9B4-4329F1D7-718012AB-C3FB642D", + "DisplayName": "Scavenger_SMOKE_Vambrace_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "B10CB722-4F4BDF11-444119B2-2D1AB381", + "DisplayName": "Scavenger_SMOKE_Vambrace_STR001_Bloodbeige_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "0750EEF6-4D7D37E1-3C18119E-F3890DD9", + "DisplayName": "Scavenger_SMOKE_Vambrace_STR001_Sienna_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "CC151AA3-4237A2D8-4DBD7EA5-DDB4C287", + "DisplayName": "Scavenger_SMOKE_Vambrace_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "248D60AC-47F987E8-95AD65B7-22D8912B", + "DisplayName": "Scavenger_SMOKE_Vambrace_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "0DC09EDD-42D7C884-D58C9E9A-6FE00CA5", + "DisplayName": "Scavenger_SMOKE_Vambrace_STR001_Longcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1250 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "E3C6E6BC-4B224BF0-EF414BB7-2A0EA7F4", + "DisplayName": "Scavenger_SMOKE_Vambrace_STR001_Lightcoat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1250 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Smoke" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Smoke" + } + ] + } + } + ], + [ + { + "Id": "BE23A8F1-4E783C51-E662DCAD-D9AA76FF", + "DisplayName": "Scavenger_Ghost_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "480C6E34-4376EAF9-C6572C83-DA1725F6", + "DisplayName": "Scavenger_GHOST_Vambrace_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "29625783-40E6FC73-9889BEB2-D9918BBA", + "DisplayName": "Scavenger_GHOST_Vambrace_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "8F0011C4-4146ACD0-A6F0BCBB-44E368DB", + "DisplayName": "Scavenger_GHOST_Vambrace_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "970853F3-4E047E1D-445092B7-712D98C2", + "DisplayName": "Scavenger_Ghost_Vambrace002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "996F45A6-4E6E2E7B-2B72B9BA-BA86F86D", + "DisplayName": "Scavenger_Ghost_SuperNova_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "17CB8A13-4E308E60-97D8CA91-4FE919DE", + "DisplayName": "Scavenger_GHOST_Vambrace_STR001_Cardinal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "374A760E-428AAFD5-D99450AA-ECE052A2", + "DisplayName": "Scavenger_GHOST_Vambrace_STR001_Construction_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "EB37BD9E-42EA32C8-53F47099-23EC20B1", + "DisplayName": "Scavenger_GHOST_Vambrace_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "51F76859-4F8CA371-4BF87A8C-F56FF9D9", + "DisplayName": "Scavenger_GHOST_Vambrace_STR001_Cerulean_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "0C76DE7F-4D1C0ADC-84E802A7-D71C7AA1", + "DisplayName": "Scavenger_GHOST_Vambrace_STR001_Mulberrygreen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ghost" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ghost" + } + ] + } + } + ], + [ + { + "Id": "540DB191-4938D04F-524DC985-0A325B21", + "DisplayName": "Scavenger_Inked_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "10704A34-4BE021FB-82B92485-262FEB57", + "DisplayName": "Scavenger_Inked_Vambrace002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "8968BDBD-4AB5F701-7A446BB7-8416EB29", + "DisplayName": "Scavenger_Blockade_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "2A08E143-44CA5E68-95E76CAF-8750B737", + "DisplayName": "Scavenger_Inked_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "49FCCB5D-49AD7F5E-79639E80-2CA236C1", + "DisplayName": "Scavenger_Inked_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "6EFB91B8-42CAD7BF-61F76D89-72AF9FE0", + "DisplayName": "Scavenger_INK_Vambrace_STR001_Surplus_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "724E0528-4D2CE2D9-A75583AC-C7087A79", + "DisplayName": "Scavenger_INK_Vambrace_STR001_Aquaperu_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "587F7BFF-490BFC4C-AD93489D-131F0520", + "DisplayName": "Scavenger_INK_Vambrace_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "5BFE81D8-42FF85A4-23FC958C-2C04537F", + "DisplayName": "Scavenger_INK_Vambrace_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "805CDB66-49EE1D43-A315AEA8-7CD0C29E", + "DisplayName": "Scavenger_INK_Vambrace_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Ink" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Ink" + } + ] + } + } + ], + [ + { + "Id": "AD900FC9-4C6608A4-F88E8B8A-87402F0F", + "DisplayName": "Scavenger_Sawbones_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "BA9BED31-442755AC-D2FCD386-7501B22D", + "DisplayName": "Scavenger_SAWBONES_Vambrace_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "1AB1CFA7-43D595B0-5A872F8F-DC6202D8", + "DisplayName": "Scavenger_SAWBONES_Vambrace_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "E7A22D4C-44FB3997-2A5E3685-7D0DF88A", + "DisplayName": "Scavenger_SAWBONES_Vambrace_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "5881CA7B-47C74C8D-15DAF09B-5860EBC9", + "DisplayName": "Scavenger_Sawbones_Vambrace002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "3EF7ED34-49B8EA4E-19BEDFBD-100B1DFA", + "DisplayName": "Scavenger_Sentinel_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "9FC661AF-41D9A1EB-67B95B8B-1D0AEB01", + "DisplayName": "Scavenger_SAWBONES_Vambrace_STR001_Teal_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "D363B1AA-4B455ED5-585CA582-0DB8A9EA", + "DisplayName": "Scavenger_SAWBONES_Vambrace_STR001_Daliah_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "74C6A5E4-4C495542-5A7D0C9C-A95F45B8", + "DisplayName": "Scavenger_SAWBONES_Vambrace_STR001_Cammo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "8F4355AF-4AFD5BA6-2A77F79C-320705E0", + "DisplayName": "Scavenger_SAWBONES_Vambrace_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "86D9421E-48F35231-B9449592-1A9F3D68", + "DisplayName": "Scavenger_SAWBONES_Vambrace_STR001_Heliotrope_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Sawbones" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Sawbones" + } + ] + } + } + ], + [ + { + "Id": "42224D73-4D8E6BE1-462D70AF-6F7B1372", + "DisplayName": "Scavenger_Switch_Mask003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "C619BC10-49C2C0FA-C3907A91-4FD26469", + "DisplayName": "Scavenger_Switch_Vambrace_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "366AD9E0-44FC80BB-E29C348F-893D21F4", + "DisplayName": "Scavenger_Switch_Vambrace002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "A3C93CBB-41722267-1807AC82-BA664088", + "DisplayName": "Scavenger_SUBAI_Vambrace_STR001_Muscat_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "8BFF72F7-4D836A8D-023714BE-A56E0948", + "DisplayName": "Scavenger_SUBAI_Vambrace_STR001_Candy_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "5C2934B0-4D7979EC-C6C8DBBF-215EAC2B", + "DisplayName": "Scavenger_SUBAI_Vambrace_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "B49CDB64-4728C011-70936792-70D0897A", + "DisplayName": "Scavenger_SUBAI_Vambrace_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "FDD79243-418C1722-EC92DEA9-9316AD83", + "DisplayName": "Scavenger_SUBAI_Vambrace_STR001_Harlequin_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.RN.Character.Vambrace", + "Runner.Switch" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.RN.Character.Vambrace" + } + ], + "ParentTags": [ + { + "TagName": "Runner.Switch" + } + ] + } + } + ], + [ + { + "Id": "F42C5B41-48F22D29-DA976BA8-667964F4", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "8426F8E5-40BA2F49-22856B89-2E0A7FC1", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "36C23757-408F4977-12793CBD-47421969", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "C6D5274E-4A50AF33-56AF71B0-CF0B53AC", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "AEC0DB8C-4EC368F5-DAC06A96-CEB2D937", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "4A96325C-44FC42C0-07DF0587-490DA277", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A89D91B4-4E228E8B-35781C81-2658F207", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A34FF7DB-45F6FB24-9E51CFA4-DAF6CDB3", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "57A455D5-40E89DEB-8F96FA93-32AFDEE8", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "D046EE8F-42140280-E4B471AD-C031B8F1", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "272369C0-42147225-E364CFA4-2947859F", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "BE76A25F-44710E8A-D011B2B7-4ED3F3A9", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "9B6943CD-4DF6CD2F-CD94CB89-E6F55380", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "2331ED81-4F306355-00FEDB96-A0674A3A", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "D93A7E86-4CFECE74-FDE2D9BA-50AB7135", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "98BCBE23-4BF7CCB5-0DC4A78C-A78F8672", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A3FF5F7B-4D265716-4847319A-2E52A0FD", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "36B2650B-4564CC7E-7ED310AD-3FCA0D75", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "097521AE-4B974026-F31B92BB-AD436A38", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "66DAA6C9-46CA0A7C-36314A94-164B78BF", + "DisplayName": "Runner_DashWeaponSpeed001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "69055D53-4DF27180-C4B36CAB-4B651054", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A1C4E2FB-4BC74EB5-60F431B2-10C5094C", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "89AD14A8-48DE42DC-2A5CAB94-BB25FCF9", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "895471FA-4A8A74AB-2FEE16BF-35FC9D04", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "D7D7D07B-4FB0FABD-BF8C3CBE-62EB6E96", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "00170D77-43531334-E51EC3B9-55C7BF82", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "667B3627-46F7049D-78BFC08A-996D2876", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "8BF4B8E2-4F4CD5AB-9DEA7885-1D73A0CC", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A82051B5-470DC624-47DCB080-0F756A9E", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "5CFA8132-4913D8C9-0C16E399-A33B3A3A", + "DisplayName": "Runner_GhostWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "49223250-4161420C-872A0F82-FC16ACDB", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "9900F2F6-4C656E14-8EEC5C9B-C028B936", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "43916EE2-4C8F0395-C826A296-0D23AB6B", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "36CE4DFC-412B8FDF-255791A6-09CCBEF4", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "9B9218FB-4DE925E6-C729FA81-62FDB505", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "E5BA823F-40C1947C-5F9278BC-7C69B25D", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "75D6E6DF-48575AFB-5758CAB4-6C9D7534", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "2A8C0EAD-44A5A393-CCEE738C-2E7409D9", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "C133B578-49D21798-35EBC4AA-25582CF1", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "B0906D16-466A6588-50AAB888-13E795AB", + "DisplayName": "Runner_GhostWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "C9C6D40A-4D6A6A57-48D5C0A1-7763C9C1", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "6191DD1B-414259E0-0B1ECDB9-2F778D36", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "5BC76AEF-46DE2C17-997CB790-79576EC5", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "6F6A7923-482BBE11-83780F8F-4B258379", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "50A1E764-4F21463D-6C2BADA0-9CDC5360", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "63489AD5-42CB0A53-39F6A3A0-8623D4E6", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "018BDF51-47A29245-9D3AC4B6-542AF65C", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "13F2AC94-485CFF04-03F5A687-10588A67", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "480FACA6-4F7F9C22-5F627BA8-C73443FE", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "C4F7CBFF-4E3611E1-176FC29A-627ED1D8", + "DisplayName": "Runner_InsightWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "0E262D7A-47567BE0-3A49ABA7-56FC1482", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "3A6C091C-47CCD38B-0E2086BD-D3C2109A", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "0FB0413D-443180B2-812B71AC-EE1ED86B", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "ABD448BD-42E78449-1FDE48AD-31284348", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "14CE3124-4B59876F-D5EDCC89-F51261C9", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "4AF324A9-4276C7AA-AE17C38D-C2BD78E8", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "F0D91E24-477BAE40-66E2F7B0-3DFDB3B4", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "B51AB8F7-4BE289E4-78C494B3-4BA50A4D", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "7D7A782A-4C5A4D21-2C64F6AB-84C3FE07", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "8EF0FE6D-4EBCEB53-18ACD39F-5EBFD6D2", + "DisplayName": "Runner_InsightWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "5D230967-452FEEE1-3F1CA780-F580E889", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "06BF4EE5-4025C17B-4C548BA3-6615B37B", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "1F688D92-4FD019AA-D7C7F8A5-B6580F39", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "689C9906-438BA3B3-753FDD86-19A72131", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "408BB4E6-42F7DE54-88C59B8B-0D9E7E59", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "4C4AB090-478FE47E-4C26CBB6-7A200AEE", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "0ED41BCD-4B51872B-3D0BC298-6EE042E0", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "DC837BB5-44119088-346900A2-034FC126", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A4352D8E-4E52870E-DEB8E383-5D74F598", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "9F62C22C-426B5D36-4EAF56A8-4AF41CFD", + "DisplayName": "Runner_InkWeaponInvis001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "62AF9541-4827D3B2-9B9DFD97-D54F1E95", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A51608C9-465510C0-CE78779E-0C164C86", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "5765929B-4A8BBD63-6017188D-1DA787EC", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "5D50CF9C-4D2ECB4A-094314B6-2B8D4FC0", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "86C70C8D-4C5B7CA9-3417F9BF-319FD6F1", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "CC1A6304-47C2362E-777B26BC-0A80A4FE", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "A4C24E89-4460D7BD-3945B39D-4CA9EBB5", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "C81F7738-4D7F55D8-DF0A0E82-7AD22B2A", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "607F97C7-471DDE98-F426B8B9-FE53424C", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "FA2FF9B5-4FF7EA88-96D9E98F-E3D924E3", + "DisplayName": "Runner_InkWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "4E171BD1-4FF98ED4-3A7AFAB5-7FE55578", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "98135600-4D7BD078-DC509987-E6B51B01", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "E4D52540-4770E39E-9864A29D-C690DB89", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "46163374-4E4F7BFD-EB51A8B6-9718AE83", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "540C2477-46391BFD-55813DBB-9E258AA6", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "0A1D3005-4CBEC273-529E4A95-76757964", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "93323940-4146B440-40CE5E95-1A0EED57", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "B5497D9A-49DC0AB5-E1A2F1AB-23CAB14B", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "433AA8A0-4DB2B9E9-79369684-F1409C83", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "65ADBB57-413A6BE0-A24A7F9C-A090BA45", + "DisplayName": "Runner_SawboneWeaponHeal001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "5A2DD3F6-433AB83A-725513B8-68D240CF", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "3636FD22-40F282F0-921FA68E-8F88ABBF", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "2920B017-48AA9AB4-EC6299AD-15FF0E6A", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "8B886664-468A2878-B26813A0-97F375E5", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "DC91C341-4F22F217-BCB30590-FAB59A9E", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "B2ECD913-49955E80-9A54DB9B-36B7D6CF", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "240BC748-4AF781EB-A93C4793-2DA8D061", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "51C1825B-4469FF48-3278DDB1-2D116E04", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "42795DDF-4ED4B770-0A6555B5-86C5AD2B", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "BC8866F3-43E7970E-145C889D-9CE7B994", + "DisplayName": "Runner_SawboneWeaponShield001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "23744B06-493AE122-0576529C-4DB530B1", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "283F2EA4-4CEE7AE7-8E097C81-B66F1652", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "D4F9F6FA-43A8BFD1-13FCFD96-84F6262D", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "BF4B9882-4C4FF1A0-645E059F-6FA49B61", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "C9DEDB8F-4BD6F133-59A0359B-81F28E77", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "799A6471-4E841075-AE1C72AA-E489FF2D", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "591CBECD-4C5A3EF1-3E6AE189-25D662BB", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "B8476F03-4226CFC3-9B47C780-CF7A508E", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "7FFCBCC4-45C346EC-87C53CAA-FB4710D2", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "EB7ED0E6-4502C591-AD8C7BA5-125BAE70", + "DisplayName": "Runner_CollectorWeaponClone001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "51E112D1-407DC2F3-3CD6C98B-31E1F1BD", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "F552A0AF-40D1CFAB-FE44B6AE-09E5C0AA", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "2C140090-4D1A3B3F-22CA068C-2ABF2928", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "426DD937-4C6C6087-10B8B9AF-D115476A", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "6CF7CB02-4B2C6199-6F1888BE-A97E611C", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "902BF9DF-4F59C115-2912CA98-1BF6AD44", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "1563CA74-4E8AA7EC-E6EF599E-3AE55D94", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "7BB053CB-4DC4B515-27171795-319B7E8B", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "BD707975-438CB68A-D727F897-C1E483C7", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "034217BF-4E7687F3-077C7F8E-2AC605F9", + "DisplayName": "Runner_CollectorWeaponSmoke001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.ICR" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Weapon.ICR" + } + ] + } + } + ], + [ + { + "Id": "CCA2272D-408ED953-87F017BE-D437FF9A", + "DisplayName": "Hunter_Inquisitor_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1000 + } + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Hunter", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } + } + ], + [ + { + "Id": "C50FFFBF-46866131-82F45890-651797CE", + "DisplayName": "Hunter_TheHart_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1000 + } + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Hunter", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } + } + ], + [ + { + "Id": "EF96A202-49884D43-7B87A6A4-BDE81B7F", + "DisplayName": "Hunter_ThePoacher_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1000 + } + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Hunter", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } + } + ], + [ + { + "Id": "606129DC-45AB9D16-B69E2FA5-C99A9835", + "DisplayName": "Hunter_Mass_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1000 + } + ], + "MetaData": { + "GameplayTags": [ + "Entity.Character" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "Faction": "Hunter", + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Entity.Character" + } + ] + } + } + ], + [ + { + "Id": "35448E14-4DB6BB9F-7FBF1398-A1113DC6", + "DisplayName": "Hunter_INQUISITOR_Head_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "AAC2B239-44D5E21A-8DFF85BA-A0CB335D", + "DisplayName": "Hunter_INQUISITOR_Head_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "AD478D17-416BA4FC-7856E798-A008EB89", + "DisplayName": "Hunter_INQUISITOR_Head_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "DA7C176F-48525599-C9477C95-137C7369", + "DisplayName": "Hunter_TheInquisitor_Head002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "6B1B9949-479BFD2B-75E137AF-FF3DBBD4", + "DisplayName": "Hunter_TheInquisitor_Head001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "C645C7AC-405B3D8A-F8E73B94-6875F0AE", + "DisplayName": "Hunter_SilentVictory_Head_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "BEF2872E-4B3188B4-3B77EA9D-CDFDE0AE", + "DisplayName": "Hunter_Deadpan_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "2837D670-46DAE1E3-BE4E749A-51BB555B", + "DisplayName": "Hunter_Scarecrow_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "70A09B43-48F9DA5B-1EEF0786-DB1911AC", + "DisplayName": "Hunter_Hearts_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "79A7B52E-46525E40-446D6181-86E689BC", + "DisplayName": "Hunter_INQUISITOR_Head_STR001_Bushmen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "40729AB2-4BDC7E9A-5F35AB92-1A46074A", + "DisplayName": "Hunter_INQUISITOR_Head_STR001_DesertCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "E98502D0-4F382389-ECB10B83-050D6726", + "DisplayName": "Hunter_INQUISITOR_Head_STR001_Provocator_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "011A024A-4C384AD4-9DEAA387-75BDA174", + "DisplayName": "Hunter_INQUISITOR_Head_STR001_WinterCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "BC7B8016-49CC1BBE-313BDB87-E4963AFD", + "DisplayName": "Hunter_INQUISITOR_Head_STR001_WoodlandCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "84FA7A89-45873888-425F7AA0-F81AB83F", + "DisplayName": "Hunter_Poacher_HeadPrestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "0398A389-46C5FD38-71B10A9E-6B4B2BEC", + "DisplayName": "Hunter_Poacher_Head001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "9F54DE7A-4E15935B-503850A1-27B0A2A4", + "DisplayName": "Hunter_Trapper_Mask_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "7F397981-45CDA239-4BCCF9A8-DDCCFABA", + "DisplayName": "Hunter_POACHER_Head_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "770507EB-47A04439-B2A4898E-104231C1", + "DisplayName": "Hunter_POACHER_Head_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "2CFDE8F9-4559A599-A53AB18D-68102EC5", + "DisplayName": "Hunter_POACHER_Head_STR001_Khaki01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "89F7FF2F-4A96B07B-946BD098-C6BDABE8", + "DisplayName": "Hunter_POACHER_Head_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "48637C1B-47888A6A-2EBAE180-2BFABAD8", + "DisplayName": "Hunter_POACHER_Head_STR001_WoodlandCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "EADE3240-481E7372-624FF2B1-86ADE4D8", + "DisplayName": "Hunter_Poacher_TERM_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Poacher", + "Customization.Skin.Terminator" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "7C3D4117-40F83D7D-953646B5-2FB22D0B", + "DisplayName": "Hunter_Stalker_HeadPrestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "5B6E31EA-4E175EB0-02243D89-42832223", + "DisplayName": "Hunter_Stalker_Head001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "970308AF-4DABD012-D281E3B4-FB114A1C", + "DisplayName": "Hunter_STALKER_Head_STR001_Bone_Marrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "1AD13D76-46D5231A-4F131B9F-229F8691", + "DisplayName": "Hunter_STALKER_Head_STR001_Red_Sorrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "65481A4E-423B337C-04642795-12D45D0C", + "DisplayName": "Hunter_STALKER_Head_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "1A1FB4F6-4CC48011-ABCA179D-9D3704DA", + "DisplayName": "Hunter_STALKER_Head_STR001_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "32822DB1-48A03B53-EC2195B8-DE46EBC2", + "DisplayName": "Hunter_STALKER_Head_STR001_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "C60F25CA-442307AE-91D878B2-6783C988", + "DisplayName": "Hunter_VETERAN_Head_STR001_Halloween_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "0D41325B-4AA5488A-E5BA96A1-1E8CC51B", + "DisplayName": "Hunter_Veteran_Head_Prestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "5CBD3864-4EA13698-9CB0E3BB-F4A8E54B", + "DisplayName": "Hunter_Veteran_Head001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "C1314461-420E3BAE-F4C372B0-7AECA478", + "DisplayName": "Hunter_VETERAN_Head_STR001_Rust_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "63AFA8FD-49220C48-24BAF0AC-55285C5B", + "DisplayName": "Hunter_VETERAN_Head_STR002_RedAndBlack_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "F0B1CF2E-416D7DB6-5849F6B2-03FC1A22", + "DisplayName": "Hunter_VETERAN_Head_STR003_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "8D8A079C-40166D50-72FC9A80-4F408195", + "DisplayName": "Hunter_VETERAN_Head_STR004_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "99B23D30-4193BBE9-236D1B8D-48AD6112", + "DisplayName": "Hunter_VETERAN_Head_STR005_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 750 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.Head", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.Head" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "FD93572C-4CF2DFD1-34E6D9A9-0252F665", + "DisplayName": "56CC586847ACFBBF273C8F890280615D", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.HT" + } + ] + } + } + ], + [ + { + "Id": "DADB36D3-4727AD78-8367D588-73AB2106", + "DisplayName": "B088DACC46EFEF7F53FA298689C254CB", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.HT" + } + ] + } + } + ], + [ + { + "Id": "0EB2781D-45D950C6-525B8CA3-08811AA3", + "DisplayName": "14F65E5D4347D683CB8FBB87C7440434", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.HT" + } + ] + } + } + ], + [ + { + "Id": "2B011E8F-46C37F90-0F8D40A9-A73782EB", + "DisplayName": "D433ADCC45A6C742527A01BBC9BD1B83", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.HT" + } + ] + } + } + ], + [ + { + "Id": "7474DFFE-4A04B58B-A12954B4-30637120", + "DisplayName": "67FE163B4569D28C33A6A693C512D266", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Customization.HT" + } + ] + } + } + ], + [ + { + "Id": "3CB31D95-41DF7958-EB416DAC-E047C5B0", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "D8C88A9E-460F4C97-C2E29D92-A23ED35C", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "17A7F928-45ACEE2D-ED040DBE-903942CA", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 3000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "30363336-4217BE70-33C637B7-EE7D9CE8", + "DisplayName": "Hunter_TheInquisitor_LowerBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "5C4F9FC8-4B0CAE9C-F00423A6-768AEA23", + "DisplayName": "Hunter_TheInquisitor_LowerBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "6A7E87AC-403EF62B-151C27A0-51B2E373", + "DisplayName": "Hunter_SilentVictory_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "99686381-4494FF8C-7B9531A7-478FE762", + "DisplayName": "Hunter_Deadpan_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "EA622D0D-49299855-389AD5A8-5D8465C3", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_STR001_Bushmen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "1F304D12-47FE3AD5-FF177C8B-5EEE8FBF", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_STR001_DesertCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "9C573AA1-49A87A04-18D0FE84-AAE2195E", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_STR001_Provocator_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "B0DBF044-409BB172-1B844E9F-37C6AE07", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_STR001_WinterCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "452CB6D6-47F7A741-FCA1E1A4-B7C55404", + "DisplayName": "Hunter_INQUISITOR_Lowerbody_STR001_WoodlandCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "BF3C1AE8-469B181D-17235389-8D2F0F62", + "DisplayName": "Hunter_Poacher_LowerBodyPrestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "4F563EB6-4882529F-0CC42397-CCCCB4A4", + "DisplayName": "Hunter_Poacher_LowerBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "E59F6A1E-45130390-87919CA0-78090BFB", + "DisplayName": "Hunter_Groundbreaker_LowerBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "A859862D-4E80F154-A9751EA2-BF26A72D", + "DisplayName": "Hunter_POACHER_LowerBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "C0C95EA0-4AA3E416-C9D023A1-6A856523", + "DisplayName": "Hunter_POACHER_LowerBody_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "A95B6AFB-40B65BDC-982BC48C-089A7E14", + "DisplayName": "Hunter_POACHER_LowerBody_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "C5933305-477060A4-5B3AD9AA-F27CEDE2", + "DisplayName": "Hunter_POACHER_LowerBody_STR001_Khaki01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "F6C27047-4F3C2DB3-F1D1DCBB-152468AB", + "DisplayName": "Hunter_POACHER_LowerBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "ACECEF03-430B9C1C-EC35B1A0-70DF7EF8", + "DisplayName": "Hunter_POACHER_LowerBody_STR001_Woodland_Camo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "ED13D15E-4439C1C1-9281D2AF-DD4C5B96", + "DisplayName": "Hunter_Poacher_TERM_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Poacher", + "Customization.Skin.Terminator" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "5EE3A5D2-4935D88A-C38E0C90-D0B9285C", + "DisplayName": "Hunter_Stalker_LowerBodyPrestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "CC59BE29-4499B628-27A63994-9AB3C2A3", + "DisplayName": "Hunter_Stalker_LowerBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "69953E03-454DD85D-EFAC0987-287A5841", + "DisplayName": "Hunter_STALKER_LowerBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "F6672493-4CCCB421-4E41B6A5-962F7C75", + "DisplayName": "Hunter_STALKER_LowerBody_Bone_STR001_Marrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1200 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "BABA70C3-47985C47-6DC864B4-D9947672", + "DisplayName": "Hunter_STALKER_LowerBody_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "7891EF21-4303340B-933F3CBF-5641B4F5", + "DisplayName": "Hunter_STALKER_LowerBody_STR001_RedSorrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1200 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "909B285D-47368138-5B0DB9AD-4B250024", + "DisplayName": "Hunter_STALKER_LowerBody_STR001_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "99886525-4FBEEDE0-65DC3B8C-F6E5D3DB", + "DisplayName": "Hunter_Veteran_LowerBody_Prestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "525F6BE6-44576B38-32ED77A1-0193F8A3", + "DisplayName": "Hunter_Veteran_LowerBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "5BA72E26-4DCF17F6-61BE90BD-558697A5", + "DisplayName": "Hunter_VETERAN_LowerBody_STR001_Rust_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "72D9D0EE-43E75384-E8B77E99-4BB7303C", + "DisplayName": "Hunter_VETERAN_LowerBody_STR002_RedAndBlack_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "E9EE792F-4D5EDAB8-67A489A4-2C1079E0", + "DisplayName": "Hunter_VETERAN_LowerBody_STR003_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "D65FD366-43C516C2-90806FA6-6F506CD9", + "DisplayName": "Hunter_VETERAN_LowerBody_STR004_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "7B79C75B-4E350E74-87556093-3ACD8CC6", + "DisplayName": "Hunter_VETERAN_LowerBody_STR005_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 900 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.LowerBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.LowerBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "1098BEE2-41B1515B-44013A87-EDB16BDC", + "DisplayName": "Inquisitor_DenyDenyDENY_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "EDB6D6B7-42023AE6-1AD8718C-AC073C0E", + "DisplayName": "Inquisitor_MaximumStamina_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "F055513D-48AACBAC-280B2AA0-0A984180", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D0A26483-421CB405-B5DE8882-AF3880A0", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EF1B789D-43B41CFF-9E86FCB5-E386CE1B", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4C57A881-4E672832-4CC3E5B1-41F9E256", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "21C5A9CD-4D61ECAF-69320B98-C1AD5F76", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "112BB3BB-4CCC4956-E4A6B18F-B3DA6629", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B67B1391-4C403EB1-584A488E-531817AE", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "14BAE773-455F2DD0-1E189EA5-F86B1873", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B24A5DD9-497F5A36-41046D9A-6B70FECD", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EC3E4663-42249899-CF7C29A8-247FAF88", + "DisplayName": "Inquisitor_AutoCollect1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4886DDC4-46B96FEE-1255D6A2-AB114B0D", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1D7D5484-4A373E8A-1593E68D-29449BC0", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C1A30779-4F209CD3-EA06F788-A9952C72", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CF8732C7-44175FA4-09FBA185-982C6C07", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E29233C5-4A600970-2E235CA9-73AC356C", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5D5FB17A-416A835F-0497EF8A-3AC67E18", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "038DAD8A-407D1694-9B706295-22F7D1CF", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "29A741BF-4896A568-2F7CBAB4-4BFC21F0", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0F3077F4-4B329526-23C1A4BE-92A59A53", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BAEA0C1F-4759110C-B4DA3CBB-C9319FA0", + "DisplayName": "Inquisitor_GreatShape1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7037D480-4CB9931A-4DDF23A3-5E321775", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D293D674-45F4A732-38B270BF-C352735B", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "386407AF-4AABAE4D-D467B0BD-ACC43BCE", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CA4F8ADC-49B4F6C1-F4303290-040DF9DC", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3785BB3F-4E2BD48E-9A300980-43F0C0A0", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A7DA9E54-453EF27F-9D54B88B-C4E63F38", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F6458DD3-41635842-29DFE381-16A1B35C", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F2E0D333-48FCFF46-1493C5BB-3DC5F4E1", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EBCBBE68-426B43FB-7330A399-C1B5A280", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FDC8FB68-4C997943-E004E885-79BCECC0", + "DisplayName": "Inquisitor_Hacker1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C215B81F-4E421961-03ECE989-49892499", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "41EBB3A5-41A9D4F1-0E5F1F82-3525FA70", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "614E01E6-4FB84750-E626EFA9-DC8E144B", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "97366702-49461051-869F2581-EBA62459", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7E151C2F-45B67D73-7AA62ABF-FF5B5199", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "16CACD86-41195B2A-8F674C9E-9D363042", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F5E2863D-47E79A45-76946690-136372B4", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D9212213-4A6BCDBA-8074D798-8DEC531B", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "158D986A-4BAC8C6D-C12D468E-DA05C347", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FEF49F93-4BE8B18F-CF4AFCB2-C9138C29", + "DisplayName": "Inquisitor_PowerBoosterTurrets1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5998C1C5-48AB7BDA-80C87295-F2764C5D", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7FF66ECA-49B0A1F1-6FDE8DAA-7F352115", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EFD7BA22-48692DB4-8A979192-E2187AB2", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C2C348F8-4AA17397-4F9593B0-EB065114", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1A3D862D-468B014F-A25F0A88-DDCA8525", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F86B6BA6-4073E216-87951B96-B73794C7", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8E2B6A26-4D15C44B-A716BD9F-1A757AB9", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E647745B-46656020-5E78C480-4ADEC74F", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E2398968-4DE51FB3-E3074E82-7D709076", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C78C375A-4A5C813C-E6F2CCB7-E690A61B", + "DisplayName": "Inquisitor_SoClose1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0C6D2A46-48B95C22-64312783-F977F211", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DE5AAA09-48FDACB2-51FE4B8D-74A1D1F2", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "97E3C57C-4A4F305C-1244F6B3-D9E70D1E", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "42E7858F-4B381C78-086D2DBB-A21A2265", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5F124952-4EE87F0C-A9B143B1-D8C0C93B", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FFE25637-464A9F44-A2A00480-4C2F1E01", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "13BE5E5B-40D14B46-D38F9F97-4A1D1F03", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3721B269-41E7DF07-85487E95-64D5184D", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "645D00B1-445F228F-D7E103AB-3869F45B", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "10518FF0-4C75041E-F07A1A9A-2E823B0C", + "DisplayName": "Inquisitor_SpeedDemon1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "791F12E0-47DA9E26-E246E385-9C3F587E", + "DisplayName": "Hart_AutoHack_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "8A5BF227-4640C2F2-3EF3C996-A6F6404D", + "DisplayName": "Hart_MarkedEye_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "2DBF9B11-4B82A639-40936396-CBA68BCD", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "55317D91-4326D128-B80FF089-0F49DEF4", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EECF881E-42C25CC3-8E0087A5-A8D28862", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5C0E2C8C-48C03234-5629789C-A6029796", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4D79F6B3-4712B0A1-0F8AA2AC-E79DB877", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A9EBFAC6-415BAFA2-CC63559E-77647A57", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "56F60891-4C8557F2-9C76848D-9F03A47D", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BFF69B7B-4A6FC0AD-C38A7CA6-CF974283", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "98C8897E-43862CC7-F3B2BE9F-639DAF7E", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3E57D756-49BB60E9-95D07B96-690B6938", + "DisplayName": "Hart_HeyDownThere1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0FA5CBDA-402FB9FC-C8B56CAE-69202061", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "889C5129-41A27F89-D080EB9A-110681C0", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2690A0F4-4398C69C-52DD888B-AF1052CF", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4C886E47-4C5A00EE-AB07D292-86FCD1B7", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "91034CDD-45265B56-2760E892-2617B9B4", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "37A8FAD4-41ABA5BC-8FB2CC86-F00BF6E4", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "78BEAA85-47917CEE-2E9C8094-289DD995", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "72CF635C-485E3751-3D50CDA2-9705F647", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "536A0788-4D6E0481-09AC3580-CE9FE98F", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2706BD60-408E32AC-EBAA7084-01393DCF", + "DisplayName": "Hart_LuckyCharm1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "08E1B042-46C86826-FA5FBE9B-8030EB01", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C22E6E90-4E21D58F-D48040B1-31A37A86", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "586E5016-45783071-E84AA993-A1EAC254", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3228707B-4880211D-BAA779A4-63AF4401", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2FCC2D2E-4CF28ED9-2EE03797-6B2C3B82", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B00AA8FB-442B1925-950003B5-ABE0D9FB", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ED75E62B-4192A169-452E30B2-E2BF9088", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4164B32D-4E4D080E-AD8AB19C-B0E88D9C", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "934D2285-4E90B153-EE714F8D-B2D2083A", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9D88E7E5-4A6E849C-525BFA8C-531D99ED", + "DisplayName": "Hart_PowerBoosterFade1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B7287C20-4907B7DD-FC7D0EA0-B8252E60", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2419BFCE-4D1EAAC8-3E084298-9764168D", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BA0AFE1E-4B789E38-0FFF0183-1EFFF4EE", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "661A7F3E-460A1872-60DD51A5-0FCA2239", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D62016A0-4A2A00E8-46EB3097-53C4AE34", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4B915E78-4842CE1A-070AE1B8-035DA047", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5F0A33CF-4EE432CD-1A9250B4-DCF85AA8", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "51E34470-41666E73-3677A6B8-471CEF14", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "261C2A3A-41023C9F-1243E298-3CCF0B52", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "478BA0C2-4C2A419B-ABA3B08A-0E7A9C49", + "DisplayName": "Hart_PowerStun1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7CE5AFBF-459102E5-728DCDAA-6F88C0F1", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "64993A47-498BE7E7-B461B684-7593961D", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A0A54D22-430433E3-BA95958E-745B6075", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BD5E67DE-4CFBBD4A-7A06889F-782D5B03", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B39D44DE-4A415065-24F7A7BF-20D69900", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2CFAE45B-46DFA24E-069FC386-7531929F", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "77741326-480FAD54-9F4ED4AE-8D3876C0", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "951F103D-40661F24-216440A4-7FC4CFA7", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E6E9C4B2-47BB78B7-ED513397-D8AD77F8", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8FAB4E1F-497D3384-9A4811AF-4D202F04", + "DisplayName": "Hart_Stealer1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9281A7AB-4EE28B4F-B6341886-DFD50391", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E8055D26-44D59134-BC6B5C99-F0ECBBE0", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F3E8289F-426A68B3-C2AD9D94-04FDB8BF", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CCE33A80-46E552A7-D9A4E6B9-DA9A9C39", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BC8DB39C-4A4173D1-37B90193-C2A460D9", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "353BC5C2-4222FC36-96DB2F94-094028FF", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6D616E59-49B271C9-7A490BA1-860C2238", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6DA6D0F6-4072F48C-65094E90-5D019AAD", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A52462F3-4F97B8ED-292ADBB1-A524E55F", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2D5E17F8-480C2B3F-382C6A92-1CA31561", + "DisplayName": "Hart_Stunning1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "44313957-44543533-907B0999-52F81510", + "DisplayName": "Poacher_AmmoHoarder_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "6BE28177-483A89CF-00B2FD83-9726ACE1", + "DisplayName": "Poacher_BubbleBuster_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "47FCA62C-449C0196-3D2293A4-22A41CF3", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B9774F02-4DBA47E4-ABB0148C-7A048B77", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "334E9171-44CB4F07-D3A4538E-62A0A5E6", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "088298F5-4D72E096-8BF0AB97-D96EE2BC", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D79CC571-49FC13D3-CCD55A92-1E6B48DF", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5959E172-4E48EB31-40F980A1-7AF1F7C4", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "014BE5EB-4D9BFED0-27D4C7B7-5BBACB60", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "411BBA8F-45B62434-EBD868AC-EC3AB874", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7F197CBD-4457AADB-238F0692-7029F950", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "50B80A5C-4A066B10-CF8E85B5-1EEF24E9", + "DisplayName": "Poacher_LMGCompensator1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3D3C4F02-4308BA7C-67306783-902EECAB", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FC1B297A-4A6F6EE7-867485B3-AAFC20E7", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C92B2BE3-4FF7B665-B0B8B7A6-F5D10D4E", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C1D9AADD-409C8C03-1E293582-112E75C1", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "30A3C1AA-49EE718D-9440E7A5-0D0CB832", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D473FA23-40CF3668-C791ECBB-5D174B76", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C471DFC6-40FE06FD-09595096-AE4C61DD", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A6C86296-406B4C6C-E53E0484-E56AD562", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "0B1C5355-4F648BAA-D5825EBC-96A85EF8", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "15BF72F2-46A0C763-9D21078A-CE8C4C91", + "DisplayName": "Poacher_BiggerClipper1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "305F597C-424FDD0A-0A6B2BB6-CF5CC542", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "34B93AFF-4487314B-FDA9DB96-A98A2EE4", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "36E43D22-4F0BF59C-B9AEDC95-9C12AC88", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FD3F4596-41F187C9-E4B2538F-E3D237C2", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B6D6ACD9-480AEC49-F4DFBDBD-E1D534E6", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9C68C3A2-4D71BCB7-5E154E9B-A54614ED", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "978DD33A-4A341E9B-DC7107B0-1ED7114A", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6D93672F-4D806354-A13CBF81-64547B53", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2C7674D4-4EA207A1-A2DEFE83-7FE24E34", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F517379C-429674C8-87BE7D8B-BAF82A1F", + "DisplayName": "Poacher_ExtraToppings1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "EB90A75F-44EA4D82-1B385EA0-0B45E1BE", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E56118B6-43396600-FB9BB68B-9456BCDF", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BBFC928A-401AD980-745316AE-68B8616E", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "67059CAD-471099DD-A98DE19D-020F55BA", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5DDAC05F-4AD79C71-B76EA5A6-1CD078D4", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7662B480-4336214B-3383D68E-76715A63", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CB458060-4EB578F3-2F7A27A3-44F8A774", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3933E97C-4ABAB090-E510DFA2-F08A1902", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "15E70D02-4CBB7772-EED464B8-014EF5DC", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F9640D7B-46C18EC1-6EF985A5-06D97BA7", + "DisplayName": "Poacher_OverTheEdge1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "78994289-47342326-CE6B3B83-021529E8", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5F1FE836-46A31A90-0DB092B7-8FB7A5E4", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F8423313-4FA798D2-958DB9BC-E9A4868A", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FC27E1D0-4C3CEE2C-5B1D439D-CD2A28C7", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ECA09E17-4C7D202A-C39A4BBD-A68E5FFB", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "83E6C3D8-4AF287A9-390250A4-3A30E65C", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7A353D84-4D755BC4-FAE272BF-8D7B00E6", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "1033725C-427503BE-5AA661A1-225C33DF", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D9A4E60F-47CDFC90-C5C71FA3-C3DB2CF5", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9CC4BC96-43394FE4-E001A4BC-B1E112D2", + "DisplayName": "Poacher_PowerBoosterMines1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BFC78D3E-4DEFDB5C-6369A7B0-EF5260C9", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CB81ECCF-403CC58E-F70A05A7-9CDFB1EC", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A5413F5F-441F471E-4EDD618D-6CF3879A", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BED70D98-4E4595F8-2E0DFA8C-5EC570B7", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8D67A05F-46FFA93F-13DAC6AE-BC4EB618", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ABF167B3-436C9473-F711CDAA-534D1D1A", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F1AE8783-4540D791-D410759E-49ED42B6", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D8F31D6C-436BFCE1-B38E4782-83A0A4D8", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "192C933F-43C76123-10FBDEBE-A4016EED", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "90AED759-4350068F-4E821A8E-8B727736", + "DisplayName": "Poacher_StaminaFreak1_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3D377249-421D35F0-F7505789-19A7E210", + "DisplayName": "Veteran_HackBloodPile_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "17208054-4A05F838-E2473790-FDF4873A", + "DisplayName": "Veteran_RevealStun_UB_Name", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Bonus" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Accessory.Bonus" + } + ] + } + } + ], + [ + { + "Id": "3C9D2E0A-44ED0159-79667DBA-4F080B49", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E9840944-4718D31F-2426E3B7-470EC8F5", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D280DDA0-4D5EB4E8-317C338D-B979A455", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DD6708E9-41B7F392-087653A6-0FC390AE", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "42A381F2-430D5581-EDBD0F8A-E66A6380", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CD905C5D-4ECB6597-E44920B4-EF494AAA", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C9378698-41E6575A-6DEB91B8-D4AB51FD", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7249B6B7-4147CF22-5063578D-5BA4DEA4", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "FCAED2A7-4A7CD99B-47F0BFBD-5E8C245B", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B946D9AB-4A69E09B-6BCBB0BE-CB632EB4", + "DisplayName": "Veteran_ChanceToActivateDrone_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "00CE2262-4386379A-86512A95-00B41ABC", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "94AECB83-4F7899FC-2ACE31A5-D926B724", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C8574001-477710DF-B9649191-07E749F5", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AC483C95-413EDE12-67B855A4-CBE9745C", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "49514CD3-4903738E-75368A90-B62BD0CE", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A7216748-4A71279F-0E1FC392-52AE589A", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E5236519-4466A7F0-0DB4FF98-BB7C1A9C", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B5D134AF-45AB4E1F-96FE3788-6CC73249", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ADFFA717-40489682-399219BA-B36B928F", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "61EAC84A-40348E9F-B118BD9B-4DC10211", + "DisplayName": "Veteran_DroneReactivationTime_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "97D7970A-47CDE045-1384D098-E7E4A681", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B9EDA06B-44111593-6D7782B4-28D2E4E3", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "BD37B515-4E3FE64F-A79F76B8-3766F4F8", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7EEA14B8-4BB8E453-A006479D-71296288", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "326BC4D9-4285F74B-62EEFFA3-E45652F8", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "ADDFA631-41E620D8-F7D7A8A6-C2C7E92B", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "8B5AC04E-4395ABDE-3E9ABA80-6A6E6A79", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B4147B2D-4BC4E902-72740091-A43A12D3", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "9AD951AD-4EDB660A-F3BEF18A-0BC549D6", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "447D825F-49939E3D-ACD807B8-BA501D29", + "DisplayName": "Veteran_DroneShield_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "AA00BB58-4A472341-68A63D9F-14C4C4E8", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6835F1E6-43D0588C-BA2469A8-D683E55C", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DF733C38-44D6574A-5A59B8AF-A30F9CB1", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E4B12FB9-4D398B7F-289339A4-2B6988FB", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "F5D3AAFB-419D0F14-DDA3F6A3-34F4A6F0", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7905E5BB-41428DE9-1C5B5AAC-A923F092", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "67E1A8F7-42207F6C-C692318D-7C756B26", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2DA218B0-40C6098E-AE0C8AA2-42BD990D", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "C403AF26-49F907BF-16420A9F-7F5DF944", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "914B88A0-447F525E-74E34589-A1EAC77E", + "DisplayName": "Veteran_ExplosiveRange_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2046082F-4049FFAB-D5A933A4-559B3AE0", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "5F114E90-42232BBA-F42A328D-A24CA0DC", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E6F42CD6-478D9406-57AEAC86-A83176BD", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B6CCC7FB-4025BF42-89E68F9A-69C8A052", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7D7A6F2D-4E7FCB1E-1A64D389-285AD695", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "B10B3885-4D122428-908A1DAB-55E7E424", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "6DED7E47-43CBE13A-028B2390-F2EAEFA8", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "A52327C5-4A4B539B-52EFEFB5-1E948A8F", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DDD6AA3C-469DD4BE-5EF13D99-4AA09120", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "4EEC7CAE-43770244-7F22A5B4-F316B988", + "DisplayName": "Veteran_HackerCrateExplode_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DE624DB6-46B9EEAA-7CBDFF9A-62D96293", + "DisplayName": "0281E6B14FEEC7B3D85962B6D95343A1", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 125 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "7493289B-4C0E2DE6-698961A7-E24648B6", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 170 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "CA91B3F8-4D45FFC4-4986029B-5F77CF06", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 230 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "932C5172-42D89178-AE68AD93-21C71499", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 310 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "3AFC7E85-4BEA742D-D8B844BE-3F2FA00B", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 410 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 30 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "D156E4EF-413E0210-2F3ED7B0-C6EB4E11", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 550 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 61 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "2889E071-4D1ED17B-740EA8B2-E0CC040B", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 730 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 124 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "80B7670F-45426B15-B960888E-3A8D3589", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 970 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 254 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "E2605091-465BCD32-D4F9948A-18EA205B", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1290 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 518 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "46E73E2A-464EA752-4C92C2AF-5C805E77", + "DisplayName": "Veteran_PowerBoosterOrbital_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1720 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1059 + } + ], + "MetaData": { + "GameplayTags": [ + "Accessory.Trinket", + "Accessory.Perk" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Accessory.Trinket" + } + ], + "ParentTags": [ + { + "TagName": "Accessory.Perk" + } + ] + } + } + ], + [ + { + "Id": "DC8AD78A-440E27BC-10A0698E-070B5A67", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "10A8C667-45801664-6E2EFA94-52E3141A", + "FollowingItem": "5A8EECD2-49F8766A-B9E340AA-838A0BE7" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "5A8EECD2-49F8766A-B9E340AA-838A0BE7", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "DC8AD78A-440E27BC-10A0698E-070B5A67", + "FollowingItem": "206926C2-47DF099A-4A4767BA-595E1A7B" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "206926C2-47DF099A-4A4767BA-595E1A7B", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "5A8EECD2-49F8766A-B9E340AA-838A0BE7", + "FollowingItem": "43B9DA8B-4F0EBB85-FEEBF19A-FEF00D36" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "43B9DA8B-4F0EBB85-FEEBF19A-FEF00D36", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "206926C2-47DF099A-4A4767BA-595E1A7B", + "FollowingItem": "0A6F4C3C-4D11A92C-695DB89F-7BB2D42D" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "0A6F4C3C-4D11A92C-695DB89F-7BB2D42D", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "43B9DA8B-4F0EBB85-FEEBF19A-FEF00D36", + "FollowingItem": "EFB28AB1-4447E554-4757229F-6A0EC453" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "EFB28AB1-4447E554-4757229F-6A0EC453", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "0A6F4C3C-4D11A92C-695DB89F-7BB2D42D", + "FollowingItem": "2161ADB1-42815480-D79FB0BD-DB6240DF" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "2161ADB1-42815480-D79FB0BD-DB6240DF", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "EFB28AB1-4447E554-4757229F-6A0EC453", + "FollowingItem": "302D79F7-47B1928C-0F3ED9B4-E445B4E6" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "302D79F7-47B1928C-0F3ED9B4-E445B4E6", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "2161ADB1-42815480-D79FB0BD-DB6240DF", + "FollowingItem": "E5F2E0AF-46A203FE-FB69C2A2-DA6CAF5F" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "E5F2E0AF-46A203FE-FB69C2A2-DA6CAF5F", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "302D79F7-47B1928C-0F3ED9B4-E445B4E6" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "10A8C667-45801664-6E2EFA94-52E3141A", + "DisplayName": "Hunter_FadePower_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Ability.Fade" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "302D79F7-47B1928C-0F3ED9B4-E445B4E6", + "FollowingItem": "DC8AD78A-440E27BC-10A0698E-070B5A67" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Fade" + } + ] + } + } + ], + [ + { + "Id": "11035634-461C25A5-691D2CA4-1A8DD98D", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "D14477DA-4ED69E00-1DC36ABC-EA0B42BC", + "FollowingItem": "FA356F20-4602AE73-33F06996-4D7D4C0A" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "FA356F20-4602AE73-33F06996-4D7D4C0A", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "11035634-461C25A5-691D2CA4-1A8DD98D", + "FollowingItem": "6025D0F3-480D672C-F5FA64A2-686D9F6D" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "6025D0F3-480D672C-F5FA64A2-686D9F6D", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "FA356F20-4602AE73-33F06996-4D7D4C0A", + "FollowingItem": "E7A46862-42E54C8F-EB195E80-3B4BDFB2" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "E7A46862-42E54C8F-EB195E80-3B4BDFB2", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "6025D0F3-480D672C-F5FA64A2-686D9F6D", + "FollowingItem": "E8F49D67-4BE59063-2CC9F081-9D9060B3" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "E8F49D67-4BE59063-2CC9F081-9D9060B3", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "E7A46862-42E54C8F-EB195E80-3B4BDFB2", + "FollowingItem": "72E40119-4BF6BCE0-1BDE21AE-12B29661" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "72E40119-4BF6BCE0-1BDE21AE-12B29661", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "E8F49D67-4BE59063-2CC9F081-9D9060B3", + "FollowingItem": "EF37C91C-4B8EC71E-EF94029A-B1F976F4" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "EF37C91C-4B8EC71E-EF94029A-B1F976F4", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "72E40119-4BF6BCE0-1BDE21AE-12B29661", + "FollowingItem": "6A47CAD6-4F28910B-68E21B9E-C9352C2D" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "6A47CAD6-4F28910B-68E21B9E-C9352C2D", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "EF37C91C-4B8EC71E-EF94029A-B1F976F4", + "FollowingItem": "D3A96F27-425CF075-CB61E9B0-CDF6C03E" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "D3A96F27-425CF075-CB61E9B0-CDF6C03E", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "6A47CAD6-4F28910B-68E21B9E-C9352C2D" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "D14477DA-4ED69E00-1DC36ABC-EA0B42BC", + "DisplayName": "Hunter_SpawnMine_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Ability.DropMine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "6A47CAD6-4F28910B-68E21B9E-C9352C2D", + "FollowingItem": "11035634-461C25A5-691D2CA4-1A8DD98D" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.DropMine" + } + ] + } + } + ], + [ + { + "Id": "7A541DCB-4F04DAB2-E10FAB84-395BB967", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "6A47CAD6-4F28910B-68E21B9E-C9352C2D", + "FollowingItem": "2FBD62CA-46D16FB8-923AD584-91AA3B7A" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "2FBD62CA-46D16FB8-923AD584-91AA3B7A", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "7A541DCB-4F04DAB2-E10FAB84-395BB967", + "FollowingItem": "7F68BAD3-43E4840A-B693E898-E44E8090" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "7F68BAD3-43E4840A-B693E898-E44E8090", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "2FBD62CA-46D16FB8-923AD584-91AA3B7A", + "FollowingItem": "568754AF-4288DBC3-D112289D-B4258377" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "568754AF-4288DBC3-D112289D-B4258377", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "7F68BAD3-43E4840A-B693E898-E44E8090", + "FollowingItem": "E450C2EC-4B17B1E1-E713BCB1-42B6A909" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "E450C2EC-4B17B1E1-E713BCB1-42B6A909", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "568754AF-4288DBC3-D112289D-B4258377", + "FollowingItem": "A96456FA-40BF0F9B-1A4C5295-BBACF575" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "A96456FA-40BF0F9B-1A4C5295-BBACF575", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "E450C2EC-4B17B1E1-E713BCB1-42B6A909", + "FollowingItem": "C9E54DEF-403446AF-47C34BAB-EDD83425" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "C9E54DEF-403446AF-47C34BAB-EDD83425", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "A96456FA-40BF0F9B-1A4C5295-BBACF575", + "FollowingItem": "8B7AF40C-49D383DE-834D6B8C-1287DB20" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "8B7AF40C-49D383DE-834D6B8C-1287DB20", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "C9E54DEF-403446AF-47C34BAB-EDD83425", + "FollowingItem": "F5D3A400-44241624-408988A6-06433448" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "F5D3A400-44241624-408988A6-06433448", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "8B7AF40C-49D383DE-834D6B8C-1287DB20", + "FollowingItem": "29D80B99-44ECCB0D-647F8D95-D7264F2D" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "29D80B99-44ECCB0D-647F8D95-D7264F2D", + "DisplayName": "Hunter_OrbitalStrikePower_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.Strike" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "F5D3A400-44241624-408988A6-06433448" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Strike" + } + ] + } + } + ], + [ + { + "Id": "ADD2D777-499D30AE-C4CEF297-F1464B5B", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "7902D836-470BBB49-DE9B9D97-F17C9DB5", + "FollowingItem": "C4B10B1A-427F6566-21CBFA90-9B6563C3" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "C4B10B1A-427F6566-21CBFA90-9B6563C3", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "ADD2D777-499D30AE-C4CEF297-F1464B5B", + "FollowingItem": "E332057B-4764F4AB-3B2617AC-C3BEC03F" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "E332057B-4764F4AB-3B2617AC-C3BEC03F", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "C4B10B1A-427F6566-21CBFA90-9B6563C3", + "FollowingItem": "94123783-435C622E-D2333ABA-5DE95BCB" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "94123783-435C622E-D2333ABA-5DE95BCB", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "E332057B-4764F4AB-3B2617AC-C3BEC03F", + "FollowingItem": "A4A8A2AC-4F284D8E-3D837591-478FD910" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "A4A8A2AC-4F284D8E-3D837591-478FD910", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "94123783-435C622E-D2333ABA-5DE95BCB", + "FollowingItem": "214CEF25-48860194-1A6A72BA-8A0C1C69" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "214CEF25-48860194-1A6A72BA-8A0C1C69", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "A4A8A2AC-4F284D8E-3D837591-478FD910", + "FollowingItem": "F2318030-41532492-9E9369B9-F69C2BA7" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "F2318030-41532492-9E9369B9-F69C2BA7", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "214CEF25-48860194-1A6A72BA-8A0C1C69", + "FollowingItem": "50C5E655-42FACFEF-3E35AF8E-37F5CA63" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "50C5E655-42FACFEF-3E35AF8E-37F5CA63", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "F2318030-41532492-9E9369B9-F69C2BA7", + "FollowingItem": "0DC38EC1-4AA02FC8-3456E5B0-2B7B4870" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "0DC38EC1-4AA02FC8-3456E5B0-2B7B4870", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "50C5E655-42FACFEF-3E35AF8E-37F5CA63" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "7902D836-470BBB49-DE9B9D97-F17C9DB5", + "DisplayName": "Hunter_SpawnTurret_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Ability.SpawnTurret" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "50C5E655-42FACFEF-3E35AF8E-37F5CA63", + "FollowingItem": "ADD2D777-499D30AE-C4CEF297-F1464B5B" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.SpawnTurret" + } + ] + } + } + ], + [ + { + "Id": "08DC38B6-470A7A5B-0BA025B9-6279DAA8", + "DisplayName": "Hunter_Supercharge_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Ability.Supercharge" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None", + "PrerequisiteItem": "50C5E655-42FACFEF-3E35AF8E-37F5CA63" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Supercharge" + } + ] + } + } + ], + [ + { + "Id": "FE8FA053-4460DC3A-46B9AD81-9FB1E552", + "DisplayName": "Hunter_INQUISITOR_Upperbody_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 5000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "C8177EB1-452E8EB4-385813A9-0D1E3D10", + "DisplayName": "Hunter_INQUISITOR_Upperbody_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 5000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "661B01E5-45A922A5-E60CC8B4-F034DB2F", + "DisplayName": "Hunter_INQUISITOR_Upperbody_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 5500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "2BF7114D-4D5C874B-7954348E-6CF23A78", + "DisplayName": "Hunter_TheInquisitor_UpperBody002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "54526C4A-4FF83835-E02711B3-08AA80F5", + "DisplayName": "Hunter_TheInquisitor_UpperBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "F4B0185D-41460D68-A0CF7D9A-00ACB6E7", + "DisplayName": "Hunter_SilentVictory_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "C0F44BF0-417ACA35-3D0B8E8A-26B1B1AB", + "DisplayName": "Hunter_Deadpan_Body_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "234A11F9-4B0EFA81-51DC4C88-A497FAC4", + "DisplayName": "Hunter_INQUISITOR_Upperbody_STR001_Bushmen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "6427875A-430F4A03-B45610B7-AA5032C2", + "DisplayName": "Hunter_INQUISITOR_Upperbody_STR001_DesertCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "B1997DB0-4F5E45E6-85E725B3-D7F1BB01", + "DisplayName": "Hunter_INQUISITOR_Upperbody_STR001_Provocator_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "B9C6F663-4436A6FD-877B1085-E16B529D", + "DisplayName": "Hunter_INQUISITOR_Upperbody_STR001_WinterCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "5232FA1E-444FAD32-50922781-0B499524", + "DisplayName": "Hunter_INQUISITOR_Upperbody_STR001_WoodlandCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "1DC6D7F2-4E8430E8-5D3132BB-A0A95796", + "DisplayName": "Hunter_Poacher_UpperBodyPrestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "B83713F0-44EED4FB-220F2F93-37AD14A2", + "DisplayName": "Hunter_Poacher_UpperBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "0FDDDD6A-45C0856D-0B3EA785-B1F508BC", + "DisplayName": "Hunter_Groundbreaker_LowerBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "1D5EF81C-41C0C739-2E5184AC-D59A2C66", + "DisplayName": "Hunter_POACHER_UpperBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "DA910254-480C5FE7-0E8B0083-C28A3F24", + "DisplayName": "Hunter_POACHER_UpperBody_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "9622BAE8-437595DF-59FBACB8-E1E16D52", + "DisplayName": "Hunter_POACHER_UpperBody_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "DB816DDC-4C3B5F7D-D9D10BBC-39EA4099", + "DisplayName": "Hunter_POACHER_UpperBody_STR001_Khaki01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "84BC6EEC-437431BE-4F26759E-9CF3DED6", + "DisplayName": "Hunter_POACHER_UpperBody_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "CF7B11C1-479FA3A4-4251F992-D1386EEA", + "DisplayName": "Hunter_POACHER_UpperBody_STR001_Woodland_Camo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "5AC24506-40153C86-DF57FA84-500DA45C", + "DisplayName": "Hunter_Poacher_TERM_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Poacher", + "Customization.Skin.Terminator" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "AA1C922A-417E66A9-2C5808AD-D2E1A166", + "DisplayName": "Hunter_Stalker_UpperBodyPrestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "334A7F0D-417F3922-E34BBDA4-A66A5334", + "DisplayName": "Hunter_Stalker_UpperBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "A3EAB1D1-47CB1ECA-E7161584-68C62294", + "DisplayName": "Hunter_STALKER_UpperBody_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "E79D8677-44756BDF-CBE4CC91-A84C7F8D", + "DisplayName": "Hunter_STALKER_UpperBody_Bone_STR001_Marrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2200 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "B58A6BE9-471A9125-3724D6AF-CD313423", + "DisplayName": "Hunter_STALKER_UpperBody_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "DF13925B-44733328-90F7A384-CFDFE6E2", + "DisplayName": "Hunter_STALKER_UpperBody_STR001_Red_Sorrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2200 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "81FBFF57-4EA7E203-AB61EB84-3D211534", + "DisplayName": "Hunter_STALKER_UpperBody_STR001_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "270609B6-4C63F71F-7F56428C-1AAEE589", + "DisplayName": "Hunter_Veteran_UpperBody_Prestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "321B9FA3-4B4497CA-94F1CDB0-07735A57", + "DisplayName": "Hunter_Veteran_UpperBody001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "9883BC8B-49B7D161-2713C1B8-9CA676B4", + "DisplayName": "Hunter_VETERAN_UpperBody_STR001_Rust_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "EDA07B50-43B4F92E-68DF5998-C09885C8", + "DisplayName": "Hunter_VETERAN_UpperBody_STR002_RedAndBlack_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "9A1076B7-4FDE1A32-01462CAD-51C1E30F", + "DisplayName": "Hunter_VETERAN_UpperBody_STR003_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1100 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "03A3932F-45744A60-BF748C85-438CFC70", + "DisplayName": "Hunter_VETERAN_UpperBody_STR004_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "7532517E-49D6EA4B-5E82DEAC-983217EE", + "DisplayName": "Hunter_VETERAN_UpperBody_STR005_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1650 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Character.UpperBody", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Character.UpperBody" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "50D3005B-437066E4-C4D99F93-97CF1B0B", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "2BBB9DD8-42102F08-18864F83-FDDE8577", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "682EC6AF-444E8B15-035489B7-B59D7026", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "EFC6A5BE-442C2554-DB9D84AC-5F2F0F5C", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "0A9DB5BC-418E1EE3-F256D591-29BB4E5B", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "80B0BA97-4566289F-2819AA85-B5F50969", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "80A2BF86-4A6E743B-95D8A8BB-A20E286E", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "91E4726C-472DAAD9-95C0EB8E-7ADB28CD", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "C84FCD1A-4E518AC0-C520A89F-25870D83", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "46B5D90B-466F5CB8-D13035BE-EB11774D", + "DisplayName": "Hunter_GunAssaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.AssaultRifle.ARD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "738CFAEB-44A48BF6-DA5F109C-50068BE3", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "1D8C5DE1-493A0FC9-0E037F9D-E8AB698E", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "085364AB-477B3945-124BB18B-D875ADF7", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "62371A42-40C8B4E3-7EE697BC-1E2B1FBF", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "8412E7AF-4072C4FE-D79F9496-9178006E", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "4A9566A4-44831B3F-D916E4BF-34595E5E", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "3B9CDE6D-437D01A2-661B83B6-00E20705", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "78DEAF53-4AC088DC-58EDD786-70A8E4FE", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "95760BC6-4FE06499-7CB49E89-64F51234", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "8FBF5ADD-4DD01BC5-02A8708F-056FBA8D", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "48072EAA-49C83C6F-38723695-5B3C7B6E", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "CE9B843E-414FBE38-2247C48F-935CC5FA", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "1054BCA7-42B538D9-EF7C5482-B6A94B51", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "4F5758F1-4D7404EB-36CEB79D-1917F35A", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "5CBB9D97-40F8A4B0-CF8A63AF-7F336C8F", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "557039DA-4846C1D8-5F63E98B-E618E1BE", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "D40B955E-44498749-0620FE97-8FC8DB07", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "E9493141-46FBD773-9DACF2AB-17F2A8E2", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "64507474-40072061-32D20DAD-7BE60D60", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "5925AB49-4B3E90DD-520E6B8A-418B4AEF", + "DisplayName": "Hunter_GunAutoShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.A", + "Customization.HT.Weapon.Shotgun.SHA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "1B51D59C-47F565A2-0E743BA1-87B83642", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "1945D4B2-4A31EB6C-6CA508A4-CDFBB44F", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "86711D83-47A60ED7-64BE78A0-51CD4C11", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "192EC9DD-4F40FE3C-66F8A2AD-84568769", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "CA7D6157-4EB6F0AE-1D6D39A4-EDD719D7", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "D4CBB3C9-425AB53E-B481558B-ED82AE7C", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "7FD66FCD-42766C53-D2CB42A7-A611B88E", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "71F194C1-45E96290-58957E91-83C5C9C6", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "9AA46980-454C38B8-CBC1CE87-F7E04F37", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "773C61C8-4B175DB0-314B809D-C142739A", + "DisplayName": "Hunter_GunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "2732AE1E-44D10CF3-8EE2BE9A-5927AA6F", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "0B14DB78-493FC642-908A88AD-910F66FA", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "E414C429-47C4DFC2-763EDBB5-BCC08629", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "FC5AC36C-4D43405F-92A3ED84-B2923A24", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "8FB11648-4CE9929D-07267C9E-7E7581A9", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "DB8F73C5-4CC7C390-B3E0FDB4-51ED3E1C", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "64F74203-4DF91204-18116B8D-432F8C85", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "BAD66B38-4C24C171-4ED63EB8-907EDF73", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "38947A1E-490F3F66-255C2F9E-FDE5D2C4", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "170A5A45-4E82E7BC-DD4117B4-78CC5929", + "DisplayName": "Hunter_GuardianGunAutoSniper001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.SniperRifle.SRA" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "51595917-43CBF0B5-7EC6FEB3-341960D6", + "DisplayName": "Hunter_HunterUseStomp_Title", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Ability.Stun" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Stun" + } + ] + } + } + ], + [ + { + "Id": "0703E363-4B0E4409-623E2D8C-06B14C79", + "DisplayName": "Veteran_RevealStun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Ability.Stun" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "ParentTags": [ + { + "TagName": "Ability.Stun" + } + ] + } + } + ], + [ + { + "Id": "36466540-42433114-08F6A0BD-4DCE05BD", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "1727C5E7-4C3C7454-A6CC0FB1-F7562CE2", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "065629E0-4A181ADD-3062169A-AFB88F43", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "0D96281E-4440DF50-5B9CA8B1-457F50D8", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "858747E7-4B7F30A0-F6C77888-D2D255AF", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "8CE61C21-4F9BD049-028EF2B8-96D3B161", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "912C2B42-486993E0-1D0B9DB6-F1D1E408", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "2C03CA70-43906511-6446DA9F-6F347900", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "1BB15A21-4C78FBC2-3E743696-82117834", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "AB2F540D-448B5339-98EC38B8-ABAFFD35", + "DisplayName": "Hunter_GunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "B83A141A-45FB8D96-D48A5185-CD607AA3", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "E4B6A311-41FB3AF9-271E1888-2CFC0DB6", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "F8240052-491F02CD-1F1B7385-4173F0EB", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "FB23E04C-4730F345-1388DF8C-D2FAF31A", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "42029CB6-4E6D0E28-CF818ABF-164C7DE4", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "7A70DC4F-40A5BC51-F3944CAA-DE0D434B", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "31E33285-4F033E73-70DB219F-194871FA", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "1E9F4B0B-411B0CFF-9009638E-FBBB68BB", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "4D448122-4066F26E-B62F0895-7BAAB7F8", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "EC7BE7FF-44840117-459D8FBE-2AE5BE27", + "DisplayName": "Hunter_InquisitorGunBurstRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.A", + "Customization.HT.Weapon.AssaultRifle.ARB" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "973C9176-404A29F9-26D13BAC-B76A2425", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "3540E3DC-4010A6EE-61C1CE80-02EE4633", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "792590BE-451B239C-C0E6838C-3B2E0C11", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "472DB728-4944C0E5-69411DBB-33C07107", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "5691AC1B-43E8AC76-06D59BAC-C213FDB1", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "877F8AE8-438318FC-69F23895-0D41FFB7", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "1808EF1C-4A86E2E9-84522D97-63791771", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "BCB67597-4E4757CA-9CD2ACB8-0AAD4881", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "D9F40224-45A9905B-8D37429F-870F911E", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "D2BF15FC-4BC92D23-0DF5DD98-3DFC2ED4", + "DisplayName": "Hunter_GunDefaultShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.B", + "Customization.HT.Weapon.Shotgun.SHD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "307A0B13-417737DE-D675309F-8B978AB8", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "0FDFC87D-45DF7692-82EA1FA7-AB57E409", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "3D535D30-4B5E5113-CA31D283-8C840129", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "656CB0C6-44C6677C-470D21AD-0EA8437A", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "C55D9EFF-46EB08AB-DD8467BC-23969E53", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "A9349C77-4A13D353-C0F315BB-7B979324", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "8C365CF4-42AE7951-57A187B0-17E4D17F", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "5DE495E7-42FB3EB0-FBEF92BD-E718E59F", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "4E4E95BB-4EBD26E7-CFA0E489-979DA0CC", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "16944601-4AA2A782-E51ECFAF-9EF33A39", + "DisplayName": "Hunter_GunDefaultRifle001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.SniperRifle", + "WeaponVariation.B", + "Customization.HT.Weapon.SniperRifle.SRD" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.SniperRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.B" + } + ] + } + } + ], + [ + { + "Id": "6562B26B-48C9C791-C82A3EAE-344EBEE1", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "90F742AD-4BDE1CBF-81B4B0BE-57271C9B", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "A87672CA-4D2BBFF3-5E273C82-F2524278", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "B02BE54A-4758C516-9593BC9E-FF9DA028", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "BBA2090F-49BA1F26-443400AC-8ABD6A7D", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "6F3359C5-4870B7B8-A4D7B9A8-C561D001", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "A17BA091-41027848-493CAA9D-5EDC9D72", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "F317A550-4A820740-40F104A0-AE68B360", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "479BE509-436547C4-222CF6BB-01802009", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "EAF5179F-4F62DCC0-6CE3E29F-4E86207E", + "DisplayName": "Hunter_GunGL001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Launcher", + "WeaponVariation.A", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Launcher" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.A" + } + ] + } + } + ], + [ + { + "Id": "89A14A79-4CD70E50-ADFEB497-B89E4381", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "610A3AB3-4452ED8C-D75B36BF-033712C7", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "D9237F6F-4D8D954F-AAB9A485-885249E5", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "13932287-4C227177-6CB055A3-10B31107", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "C31447C1-478648B9-70D96697-EF2DD4C3", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "F2B479F9-462B3E42-59B961BD-1F5FE733", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "145CB9F7-4F6BAF79-5CA473A1-942BA2E5", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "05D7B82B-4D390D04-DD1969AD-B32138FF", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "8169B45E-483CAFB8-6558E089-D571FDD4", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "61F12091-408B43FF-62C46191-66FF750C", + "DisplayName": "Hunter_GunHeavyMachineGun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.AssaultRifle", + "WeaponVariation.C", + "Customization.HT.Weapon.AssaultRifle.ARH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.AssaultRifle" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "F7B07560-43C62803-6D038BBE-D754E89A", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 250 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "022AC78D-48C408C3-34516A90-48A238B9", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "4DE5990D-47B51EB2-989AD0A5-2C6A5AE7", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "E4F1E5FB-490D72F4-4BD616B5-855A2F2C", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "AECFE64B-4E7DD00D-40EF2BA5-CE4468BA", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "BF83D7BD-4F873D64-1486D1A8-C170A148", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "B4487007-44B62E2C-CCC848B5-E322A19E", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "4F01871E-46F3E143-8E808397-71CD9F84", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "85264522-491A092C-058DB7AA-DC5A7464", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "FBB134FE-41AA81CC-6BB81BAD-D48E93AB", + "DisplayName": "Hunter_GunHuntingShotgun001_DisplayName", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "Weapon.Shotgun", + "WeaponVariation.C", + "Customization.HT.Weapon.Shotgun.SHH" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Weapon.Shotgun" + } + ], + "ParentTags": [ + { + "TagName": "WeaponVariation.C" + } + ] + } + } + ], + [ + { + "Id": "0606F846-4D4C7EB7-0601CC84-C50BCAC6", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "22C48CEE-49DC29EE-D48A82A7-423DCCE6", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 340 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "FF5ADA45-4579CD95-C8536DB9-44C75F24", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 460 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "37736844-4AFD0D25-687CEBA2-B721CEA9", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 620 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "4BCE89A6-40F86876-25ABF58B-35A734AC", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 820 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 90 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "4D3110C7-45832FC4-FAD3CDBB-2988CDD3", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1100 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 183 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "D33211F6-43BF66DE-32E55592-8266B97A", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1460 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 372 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "369D5D0C-4175FD44-45EF67BE-F060B270", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 1940 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 762 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "EC2B43B6-444929A1-346A12B6-4D4DC8D3", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 2580 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 1554 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "23C4DCE7-4DB1D6CD-C9147587-F5C42450", + "DisplayName": "Hunter_GunCAR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3440 + }, + { + "CurrencyId": "EGMCurrency::CurrencyA", + "Price": 3177 + } + ], + "MetaData": { + "GameplayTags": [ + "WeaponVariation.C", + "Weapon.Carbine", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "WeaponVariation.C" + } + ], + "ParentTags": [ + { + "TagName": "Weapon.Carbine" + } + ] + } + } + ], + [ + { + "Id": "DFB5DEDA-45642C40-19333981-B657ED00", + "DisplayName": "Hunter_Veteran_Gun003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Hunter.CircuitBreaker", + "Customization.HT.Weapon.ArcCaster" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.CircuitBreaker" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.ArcCaster" + } + ] + } + } + ], + [ + { + "Id": "926C6E00-431C6A7E-BD1C32A6-40B2344A", + "DisplayName": "Hunter_Veteran_Gun003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Hunter.CircuitBreaker", + "Customization.HT.Weapon.SlowDartGun" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.CircuitBreaker" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.SlowDartGun" + } + ] + } + } + ], + [ + { + "Id": "06F7FCC0-42FD6CBD-D706E489-B60CB7EC", + "DisplayName": "Hunter_Warpaint_Gun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARB", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARB" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "780FFEB9-4A693FCC-D3CDEE87-02B1C293", + "DisplayName": "Hunter_INQUISITOR_ARB_OR001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 6500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARB", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARB" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "CD093BD4-4B8F57F4-E39025BE-283100A5", + "DisplayName": "Hunter_INQUISITOR_ARB_OR002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 6500 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARB", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARB" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "38E66E53-4AC4B032-05C8E1B4-5BB64F0D", + "DisplayName": "Hunter_INQUISITOR_ARB_OR003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 9000 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARB", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARB" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "611F4DCB-4A5C38EC-4E423DB5-12CD9DC6", + "DisplayName": "Hunter_TheInquisitor_Gun001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARB", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARB" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "809388E8-44CBE301-0FED6181-78D0840B", + "DisplayName": "Hunter_INQUISITOR_ARB_STR001_WinterCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARB", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARB" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "5889A14A-44DEC8EA-D019F69C-FD3C5A44", + "DisplayName": "Hunter_TheInquisitor_Gun004_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "3B3BC370-4395FAF5-45A97CBF-8F601901", + "DisplayName": "Hunter_TheInquisitor_Gun002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "428EE16F-4F00056E-576CC29E-D83B8DAB", + "DisplayName": "Hunter_Deadpan_Gun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "B5136833-496568C8-711E8191-4551C9A8", + "DisplayName": "Hunter_INQUISITOR_ARD_STR001_Bushmen_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "2EACF8B9-420F0EFA-29ECB799-230DC0FB", + "DisplayName": "Hunter_INQUISITOR_ARD_STR001_WoodlandCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "AA59048F-44F8D520-BEF329AB-423AAAFC", + "DisplayName": "Hunter_INQUISITOR_SHD_CH16_ArticLab_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "24D5F616-4191358D-93B8E5BD-FFE763F1", + "DisplayName": "Hunter_TheInquisitor_Gun003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "29447D46-4334997E-CF872F8B-08FDC442", + "DisplayName": "Hunter_SilentVictory_Gun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "37A7B972-49FD9E48-4607CF88-7CE29AB1", + "DisplayName": "Hunter_INQUISITOR_SHD_STR001_DesertCamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "55CF5EF1-4AFDA4A8-A6C9FD9D-E572C572", + "DisplayName": "Hunter_INQUISITOR_SHD_STR001_Provocator_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "94A20AF4-4FD4BF21-16211CBA-F617E232", + "DisplayName": "Hunter_Poacher_GunPrestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "1CC42AF0-47582AA7-3C009F9A-DA50BA20", + "DisplayName": "Hunter_Poacher_GunDBD_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "AA25DA85-43EDF88C-233713B4-38B43365", + "DisplayName": "Hunter_Poacher_Gun001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "D60E21A8-4EADE0E9-10DF2FAD-7D382699", + "DisplayName": "Hunter_Groundbreaker_Gun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "7EC78D9B-439F9529-0FED17BB-88674670", + "DisplayName": "Hunter_POACHER_ARH_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "D932FB32-4C522905-3C97888E-6E052A5C", + "DisplayName": "Hunter_POACHER_ARH_STR001_Desert01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "76EA9C0D-4CAF09F4-CDA3FE91-552BD1AC", + "DisplayName": "Hunter_POACHER_ARH_STR001_Desertcamo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "F7038746-4159AE4F-9C63F39B-E0AD536E", + "DisplayName": "Hunter_POACHER_ARH_STR001_Khaki01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "780B5A88-46E77F47-DED23984-71AFB237", + "DisplayName": "Hunter_POACHER_ARH_STR001_Winter01_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "96CAF185-4C03106C-8B61909A-F67D5581", + "DisplayName": "Hunter_POACHER_ARH_STR001_Woodland_Camo_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "361D6828-4314B8A0-A9432D91-3C93C9C0", + "DisplayName": "Hunter_Poacher_TERM_Gun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "D9183566-4F2FAD77-65BCF78B-18CA9082", + "DisplayName": "Hunter_Poacher_Gun002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHA", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHA" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "B42F8BA0-4A4294BA-F95A4090-E62F66BC", + "DisplayName": "Hunter_Poacher_TERM_Gun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHA", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHA" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "4FF65F4A-4CE339E2-CE4F3AB5-123CE2CD", + "DisplayName": "Hunter_Poacher_GunWarpaint_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHD", + "Hunter.Inquisitor" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Inquisitor" + } + ] + } + } + ], + [ + { + "Id": "245A2BEA-47FBBE64-1CB03480-99C7F1A7", + "DisplayName": "Hunter_Poacher_GunGoldRush_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "9373067D-4895DE2C-33EFBA87-11F6E1D6", + "DisplayName": "Hunter_Poacher_Gun003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "1B00252A-45A92062-24ECE581-6C99A2A3", + "DisplayName": "Hunter_Poacher_TERM_Gun_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHH", + "Hunter.Poacher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHH" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Poacher" + } + ] + } + } + ], + [ + { + "Id": "667EF1B7-4448A67A-2E1B5EB7-4B2DBA66", + "DisplayName": "Hunter_Stalker_Gun001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.AssaultRifle.ARB", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.AssaultRifle.ARB" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "B95774E6-41C37130-DAE2F0A6-C5E82C38", + "DisplayName": "Hunter_Stalker_Gun002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRA", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRA" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "6A848D72-4DB8BAE3-880B4BA3-5895B2C0", + "DisplayName": "Hunter_Stalker_GunWarpaints_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRA", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRA" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "28F46D51-41422203-FB6AE4AD-C97A6CF2", + "DisplayName": "Hunter_Stalker_GunCH03_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "CB126774-4FD7F26C-871645BB-FFFA3881", + "DisplayName": "Hunter_Stalker_Gun004_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "3BB3C477-4D87712B-F8F6388F-14E48FB2", + "DisplayName": "Hunter_Stalker_Gun003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "D2D7CAE3-4C546273-6D4947B9-13474905", + "DisplayName": "Hunter_STALKER_SRD_STR001_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "CB1BF85D-4F85BF2F-C793FFA1-AECC67A0", + "DisplayName": "Hunter_STALKER_SRD_STR001_BoneMarrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyC", + "Price": 3600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "5DB865F1-4BFC11F0-8A66B9BE-D329E7DA", + "DisplayName": "Hunter_STALKER_SRD_STR001_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "F7E6CBFC-4B4B3E97-BFA83F8A-C38D983A", + "DisplayName": "Hunter_STALKER_SRD_STR001_Red_Sorrow_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 3600 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "7EF73601-4356F97A-290441AC-940A3FFE", + "DisplayName": "Hunter_STALKER_SRD_STR001_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.SniperRifle.SRD", + "Hunter.Stalker" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.SniperRifle.SRD" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Stalker" + } + ] + } + } + ], + [ + { + "Id": "DE95AA5D-49244132-4C8A4FAB-76BC50C6", + "DisplayName": "Hunter_Veteran_Gun_JungleBoodMoon_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Hunter.Mass", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.Mass" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.TripleCarbine" + } + ] + } + } + ], + [ + { + "Id": "F01A992E-429392A4-F839FD93-C25B34DB", + "DisplayName": "Hunter_Veteran_Gun002_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Hunter.Mass", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.Mass" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.TripleCarbine" + } + ] + } + } + ], + [ + { + "Id": "D3007EBC-48AE5B7E-F74C7097-4C9409AF", + "DisplayName": "Hunter_VETERAN_CARB_STR002_RedAndBlack_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Hunter.Mass", + "Customization.HT.Weapon.TripleCarbine" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.Mass" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.TripleCarbine" + } + ] + } + } + ], + [ + { + "Id": "23B50E2A-49B1FD33-201BDFAF-D251C637", + "DisplayName": "Hunter_Veteran_Gun_Prestige001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Hunter.Mass", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.Mass" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.GrenadeLauncher" + } + ] + } + } + ], + [ + { + "Id": "9109796A-49930831-B017B399-4A9F22EA", + "DisplayName": "Hunter_Veteran_Gun003_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Hunter.Mass", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.Mass" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.GrenadeLauncher" + } + ] + } + } + ], + [ + { + "Id": "E5F50D08-439E83CA-AB5AB99F-5705D7D3", + "DisplayName": "Hunter_VETERAN_SHA_STR001_Rust_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Hunter.Mass", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.Mass" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.GrenadeLauncher" + } + ] + } + } + ], + [ + { + "Id": "1E929355-44BB0C71-4D691BAE-41136D5B", + "DisplayName": "Hunter_VETERAN_GL_STR004_Black_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Hunter.Mass", + "Customization.HT.Weapon.GrenadeLauncher" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Hunter.Mass" + } + ], + "ParentTags": [ + { + "TagName": "Customization.HT.Weapon.GrenadeLauncher" + } + ] + } + } + ], + [ + { + "Id": "C814E890-4A7C9D9A-2F2594A3-153E77A0", + "DisplayName": "Hunter_Veteran_Gun001_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHA", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHA" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "333EE19D-4C1073FB-2EC1D7BC-3A8ADE63", + "DisplayName": "Hunter_VETERAN_CARB_STR003_Desert_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 1800 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHA", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHA" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ], + [ + { + "Id": "EA19897C-4CFF7AA7-A7A3B480-BAA505A9", + "DisplayName": "Hunter_VETERAN_SHA_STR005_Winter_NAME", + "Purchasable": true, + "Consumable": false, + "InitialQuantity": 1, + "DefaultCost": [ + { + "CurrencyId": "EGMCurrency::CurrencyB", + "Price": 2700 + } + ], + "MetaData": { + "GameplayTags": [ + "Customization.HT.Weapon.Shotgun.SHA", + "Hunter.Mass" + ], + "MinPlayerLevel": 1, + "MinCharacterLevel": 1, + "Origin": "None" + }, + "GameplayTagContainer": { + "GameplayTags": [ + { + "TagName": "Customization.HT.Weapon.Shotgun.SHA" + } + ], + "ParentTags": [ + { + "TagName": "Hunter.Mass" + } + ] + } + } + ] + ] +} \ No newline at end of file